https://github.com/fajkowsky/heroku-django-basicapp
Basic django webapplication for heroku service with starter bootstrap layout.
https://github.com/fajkowsky/heroku-django-basicapp
Last synced: 9 months ago
JSON representation
Basic django webapplication for heroku service with starter bootstrap layout.
- Host: GitHub
- URL: https://github.com/fajkowsky/heroku-django-basicapp
- Owner: Fajkowsky
- Created: 2013-10-13T06:59:05.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-10-13T07:22:03.000Z (about 12 years ago)
- Last Synced: 2025-02-03T15:53:33.095Z (11 months ago)
- Language: Python
- Size: 125 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
Heroku Django BasicApp
=====
This is simplest django webapplication with working out of box for heroku service.
Deployment
----------
All what you need to do after fork this repository is:
### Local
If you want run this on local machine you should have installed heroku-toolbelt and virtualenv.
1. Create virtual environment:
$ virtualenv venv/ --distribute
2. Activate virtual environment:
$ source venv/bin/activate
3. Install requirements:
$ pip install -r requirements.txt
4. Run app:
$ python manage.py runserver
or
$ foreman start
### Heroku
If you want run this on heroku you must have account there.
1. Login to heroku
$ heroku login
2. Create app:
$ heroku create
3. Push to heroku server:
$ git push heroku master
3. Open in browser:
$ heroku open