Code for Seoul - Seoul Serenity
First, set your app's secret key as an environment variable. For example, example add the following to .bashrc
or .bash_profile
.
export SEOUL_SERENITY_SECRET='something-really-secret'
export DATABASE_URL='database-uri'
Then run the following commands to bootstrap your environment.
git clone https://github.com/codeforseoul/seoul_serenity cd seoul_serenity pip install -r requirements/dev.txt python manage.py db init python manage.py db migrate python manage.py db upgrade python manage.py runserver -h 0.0.0.0 (-p PORTNUMBER)
In your production environment, make sure the SEOUL_SERENITY_ENV
environment variable is set to "prod"
.
To open the interactive shell, run
python manage.py shell
By default, you will have access to app
, db
, and the User
model.
To run all tests, run
python manage.py test
Whenever a database migration needs to be made. Run the following commmands:
python manage.py db migrate
This will generate a new migration script. Then run:
python manage.py db upgrade
To apply the migration.
For a full migration command reference, run python manage.py db --help
.
for Mac
brew install python3 virtualenv —python=/user/local/bin/python3 env
[Docker](http://docker.io/) (dev mode)
- python 2.7.3 / Debian:wheezy
docker pull thechunsik/seoulserenity:python2
docker run -i -t -p 5000:5000 thechunsik/seoulserenity:python2 /bin/bash
export SEOUL_SERENITY_SECRET='something-really-secret'
export DATABASE_URL='database-uri'
python manage.py runserver -h 0.0.0.0 (-p 5000)
running on "DOCKER_HOST_IP_ADDRESS(14.63.219.127):5000"