Skip to content
This repository was archived by the owner on Mar 2, 2019. It is now read-only.

Latest commit

 

History

History
14 lines (14 loc) · 430 Bytes

README.md

File metadata and controls

14 lines (14 loc) · 430 Bytes

django-basic-file-upload

  • Create Virtual Environment. virtualenv venv
  • Activate the environment. source venv/bin/activate
  • Install requirements.txt pip install -r requirements.txt
  • Go to the project folder (In this case: dfu)
  • Migrate. python manage.py migrate
  • Do collect static. python manage.py collectstatic
  • Run the server. python manage.py runserver 5000