Landing Page for the annual Art Exebition of IIT Jodhpur. http://framed2020.herokuapp.com/
-
Install python in your environment(pre-installed on Ubuntu).
-
Navigate to the cloned repository.
cd <project_directory_name> # framed
-
Install
pipenv
for dependency managementpip install pipenv
-
Activate virtual environment, if you don't want to activate env, use
pipenv run
to run python scriptssource "$(pipenv --venv)"/bin/activate
-
Install Dependinces
pip3 install -r requirements.txt
-
Make database migrations
python manage.py makemigrations python manage.py migrate
-
Create a superuser
python manage.py createsuperuser
-
Run development server on localhost
python manage.py runserver