https://github.com/shalakhin/django-skeleton
finally my own skeleton for django projects
https://github.com/shalakhin/django-skeleton
django-skeleton python
Last synced: about 2 months ago
JSON representation
finally my own skeleton for django projects
- Host: GitHub
- URL: https://github.com/shalakhin/django-skeleton
- Owner: shalakhin
- Created: 2013-01-23T18:30:52.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2017-10-08T10:25:10.000Z (over 7 years ago)
- Last Synced: 2025-03-23T19:22:32.234Z (3 months ago)
- Topics: django-skeleton, python
- Language: Python
- Size: 28.3 KB
- Stars: 8
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# django-skeleton
## Why?
To save others and my time I decided to make great django-skeleton considering
**best practices** used by django developers all over the world. If you find
something you'd like to be added pull requests or issues are highly appreciated.## What's in?
* Makefile to reduce console typing
```bash
make run
make collectstatic
make makemessages
make compilemessages
make test
make clean_pyc
make makemessagesjs
make migrate
```## Usage
```bash
django-admin.py startproject --template=https://github.com/shalakhin/django-skeleton/archive/master.zip new_project
```To launch heroku web app with this skeleton:
```bash
django-admin.py startproject --template=https://github.com/shalakhin/django-skeleton/archive/master.zip new_projectheroku create
heroku app:rename new_project
fab install_heroku_addons
git commit -m "my first commit"
```