A social network application with an antique gold aesthetic.
- Frontend: Next.js
- Backend: Go
- Database: SQLite
Before running, you must set the correct API URL in frontend/src/config.mjs:
- For Docker: Set
export const BASE_URL = buildURL; - For Manual Setup: Set
export const BASE_URL = devURL;
docker-compose up --buildWhat's inside?
- ns-backend: The Go server (API & Database).
- ns-frontend: The Next.js web application.
cd backend
go run .- Run Frontend:
cd frontend
npm install
npm run devThe application will be available at http://localhost:3000.