Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 933 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 933 Bytes

Django GTD

A sample Getting Things Done (GTD) app using MySQL and the Django admin interface. To create projects, actions, context or make any modifications, use the Django admin URL at http://<yourapp>.yourdomain.com/admin/.

Local development

pypm install -r requirements.txt
python manage.py syncdb
python manage.py migrate
python manager.py runserver

Deploying to Stackato

stackato push djangogtd
# Answer "yes" when asked to bind any services and select "mysql"

stackato run djangogtd "python manage.py syncdb --noinput"
stackato run djangogtd "python manage.py migrate --noinput"

# Create the admin user
stackato run djangogtd "python manage.py createsuperuser --username=admin --email=admin@mydomain.com --noinput"
stackato run djangogtd "python manage.py changepassword2 admin secret123"

# Visit the app; go to /admin/ to add tasks, projects and contexts.