This project is a personal terminal portfolio built using the T3 Stack, which is bootstrapped with create-t3-app
.
Ensure you have the following installed on your local development environment:
- Node.js (version 22.x or later)
- npm
Clone the repository:
git clone https://github.com/dotarvid/terminal-portfolio.git
cd terminal-portfolio
npm install
Copy the .env.example file to .env and fill in the necessary environment variables. As of 2024-09-17 there are no environment variables needed.
cp .env.example .env
To start the development server, run:
npm run dev
Open http://localhost:3000 in your browser to see the application.
To build the project for production, run:
npm run build
The output will be located in the .next directory. You can then start the production server with:
npm start
If you would like to contribute to this project, please fork the repository and create a new branch for your feature or bugfix. Submit a pull request, and your changes will be reviewed.
This project is licensed under the MIT License. See the LICENSE for more information.