Django + Nextjs Template: Standardised CFC Tech Stack
- Node.js 18+ and npm - Download here
- uv 0.8+ (Python package manager) - Installation guide
git clone <your-repo-url>
cd <project-name>MacOS:
brew install uv Ubuntu
apt install astral-uvOtherwise, look at the installation guide
Before proceeding, create your environment files by copying the examples:
cp ./client/.env.example ./client/.env && cp ./server/.env.example ./server/.envcd server
uv sync
source .venv/bin/activate
python manage.py migrate
python manage.py createsuperuser
python manage.py runserverBackend (.env in server/)
APP_NAME=DjangoAPI
APP_ENV=DEVELOPMENT
API_SECRET_KEY=your-secret-key-here
API_ALLOWED_HOSTS=.localhost 127.0.0.1 [::1]
POSTGRES_HOST=localhost
POSTGRES_NAME=your_db_name
POSTGRES_USER=your_username
POSTGRES_PASSWORD=your_password
POSTGRES_PORT=5432
DJANGO_SUPERUSER_PASSWORD=Password123
DJANGO_SUPERUSER_EMAIL=[email protected]
DJANGO_SUPERUSER_USERNAME=admin
FRONTEND_URL=http://localhost:3000Frontend (.env in client/)
NEXT_PUBLIC_BACKEND_URL=http://localhost:8000cd client
npm install
npm run dev- Frontend: http://localhost:3000
- Backend API: http://localhost:8000
- Admin panel: http://localhost:8000/admin
cd server
# Run development server
python manage.py runserver
# Create migrations
python manage.py makemigrations
# Apply migrations
python manage.py migrate
# Create superuser
python manage.py createsuperuser
# Run tests
python manage.py test
# Reset database (nuclear option)
./nuke.shcd client
# Development server
npm run dev
# Build for production
npm run build
# Start production server
npm start
# Run linting
npm run lint
# Fix linting issues
npm run lint:fix
# Type checking
npm run typecheck
# Format code
npm run formatIf the models are updated, be sure to create a migration:
python manage.py makemigrations # create migration
python manage.py migrate # apply migrationsIf you run into migration conflicts that you can't be bothered to fix, run nuke.sh to clear your database. Then, run migrations again.
You can run npm install and uv sync in the respective client and server folders to install the newest dependencies.
Edit the .env file in the respective directory (client or server).