Skip to content

codeforseoul/seoul_serenity--deprecated

Repository files navigation

서울 맑음

Code for Seoul - Seoul Serenity

Quickstart

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)

Deployment

In your production environment, make sure the SEOUL_SERENITY_ENV environment variable is set to "prod".

Shell

To open the interactive shell, run

python manage.py shell

By default, you will have access to app, db, and the User model.

Running Tests

To run all tests, run

python manage.py test

Migrations

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.

Virtualenv

for Mac

brew install python3
virtualenv —python=/user/local/bin/python3 env

[Docker](http://docker.io/) (dev mode)

  1. 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"

About

서울 시정 날씨를 알려주는 서비스입니다.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •