Make a Landing Page for your Business with Django and Postgres.
- Django - Django makes it easier to build better web apps more quickly and with less code.
- Bootstrap - Build fast, responsive sites with Bootstrap.
- Postgres - The World's Most Advanced Open Source Relational Database.
Deployed on Vercel.
Click Here for Live Preview.
- Clone Repo
cd /path/to/folder
mkdir landing
cd landing
git clone https://github.com/Arvind-4/Landing-Page-in-Django.git .
- Create a Virtual Environment
pip3 install virtualenv
cd landing
python3.9 -m virtualenv .
source bin/activate
For Windows use: .\Scripts\activate
- Install Dependencies
pip install -r requirements.txt
Add Your Environment variable to .env
.
Refer .sample.env
file.
- Make Migrations
cd /path/to/folder/landing
python manage.py makemigrations
python manage.py migrate
- Run Dev Server
python manage.py runserver localhost:8000
Open localhost:8000 in Browser.
This Project is MIT Licensed.