Skip to content

Songuku95/learn-django

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation

  • You need to install MySQL first

  • Install some python packages

# Install virtualenvwrapper
sudo pip install virtualenvwrapper
export WORKON_HOME=~/Envs
mkdir -p $WORKON_HOME
echo "source /usr/local/bin/virtualenvwrapper.sh" > ~/.bashrc
mkvirtualenv mysite
workon mysite

# Install Python dependency
sudo pip install -r requirements.txt
  • Default settings is from file local.py. If you want to change, please run those commands:
python manage.py runserver --settings=mysite.settings.development
python manage.py migrate --settings=mysite.settings.production

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages