Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moqada/django-project-template
Django project template for 1.5+
https://github.com/moqada/django-project-template
Last synced: 3 days ago
JSON representation
Django project template for 1.5+
- Host: GitHub
- URL: https://github.com/moqada/django-project-template
- Owner: moqada
- Created: 2013-02-05T07:12:13.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-03-22T18:52:31.000Z (over 11 years ago)
- Last Synced: 2024-04-17T07:13:59.562Z (7 months ago)
- Language: Python
- Homepage:
- Size: 125 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
#######################
Django Project Template
#######################Install for development
=======================1. startproject
---------------::
django-admin.py startproject --template=https://github.com/moqada/django-project-template/zipball/master project_name
2. pip install
--------------::
cd project_name
pip install requirements/development.txt4. Edit local settings
----------------------If you have local settings per a developer.
::
cp project_name/settings/development/local.example.py project_name/settings/development/local.py
3. syncdb
---------::
python manage.py syncdb --settings=project_name.settings.development
5. runserver
------------::
python manage.py runserver --settings=project_name.settings.development
Other usage
===========For Test
--------::
python manage.py test --settings=project_name.settings.test
For Jenkins
-----------::
pip install -r requirements/jenkins.txt
python manage.py jenkins --settings=project_name.settings.test.jenkins