A Django website to showcase my skills through experiences.
V2.Demo-1.mov
Visit this website or learn more about this project on my blog.
-
Create a virtual environment
-
Activate the virtual environment
-
Install dependencies:
pip install -r requirements.txt
-
Get environment variables from Vercel
vc env pull
-
Run migrations:
python manage.py migrate
-
Start the development server:
python manage.py runserver
The server will start at http://127.0.0.1:8000/
-
Create a superuser to access the admin panel:
python manage.py createsuperuser
-
Collect static files (for production):
python manage.py collectstatic