Skip to content

Instantly share code, notes, and snippets.

@hugopereira84
Last active March 14, 2017 18:06
Show Gist options
  • Save hugopereira84/ee1d1a0bdc75e9ff2ae54d4374e8518b to your computer and use it in GitHub Desktop.
Save hugopereira84/ee1d1a0bdc75e9ff2ae54d4374e8518b to your computer and use it in GitHub Desktop.
Best pratices in projects
Starting a Django Project the Right Way:
https://jeffknupp.com/blog/2012/02/09/starting-a-django-project-the-right-way/
Git ignore in root of project:
https://github.com/github/gitignore
Git branch:
https://github.com/balsagoth/dotfiles
Tools:
https://virtualenvwrapper.readthedocs.io/en/latest/
Start python multithread:
python manage.py runserver -h 0.0.0.0 -p 5000 --threaded
Start python singlethread:
python manage.py runserver -h 0.0.0.0 -p 5000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment