Last active
March 14, 2017 18:06
-
-
Save hugopereira84/ee1d1a0bdc75e9ff2ae54d4374e8518b to your computer and use it in GitHub Desktop.
Best pratices in projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Starting a Django Project the Right Way: | |
https://jeffknupp.com/blog/2012/02/09/starting-a-django-project-the-right-way/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Git ignore in root of project: | |
https://github.com/github/gitignore | |
Git branch: | |
https://github.com/balsagoth/dotfiles |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Tools: | |
https://virtualenvwrapper.readthedocs.io/en/latest/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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