Anoyi's Personal Website 🐬
Lightweight full stack web application development
🚀 Quick Start
First, clone the repo:
git clone https://github.com/AnoyiX/anoyi.git
▼ Local Development
# install packages
bun install
# run
bun run dev
Open http://localhost:3000 with your browser to see the result.
▼ Configuration
You can use the following environment variables to modify the application's configuration:
| Name | Default | Description |
|---|---|---|
| MONGO_URI | null |
MongoDB connection string |
| NEXT_PUBLIC_GA_MEASUREMENT_ID | null |
Google Analytics Measurement ID |
| NEXT_PUBLIC_ENABLE_REACT_SCAN | false |
Enable to use react-scan |
▼ Deployment
Docker
- Build:
docker build -t nextjs-anoyi . - Run:
docker run -d -p 3000:3000 nextjs-anoyi
Vercel
- New Project
- Add Your Github Account
- Import Your Git Repository
Then vercel will deploy your application automatically when you push your code.
Others
To learn more, see Next.js Deployment.