Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pm8k/project_setup
https://github.com/pm8k/project_setup
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pm8k/project_setup
- Owner: pm8k
- Created: 2017-01-28T04:27:50.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-28T05:46:12.000Z (almost 8 years ago)
- Last Synced: 2024-11-11T03:13:00.138Z (2 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Setup for different projects:
Git:
1. Create Repo
2. Add GitignoreVirtual Environment
Use the conda virtual environment
1. conda search "^python$"
2. conda create -n $ENVIRONMENT_NAME python=x.x
3. source activate $ENVIRONMENT_NAMEWhen ready to switch out
4. source deactivateSet up for Django
1. django-admin startproject mysite
2. python manage.py startapp polls
python manage.py check;
$ python manage.py makemigrations polls
python manage.py sqlmigrate polls 0001
3. python manage.py migrate
4. python manage.py runserverSet up superusers
$ python manage.py createsuperuserRun Django Shell
$ python manage.py shell