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

onemadgeek/django-basic-file-upload

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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