Skip to content

mijdavis2/starter_weppy

Repository files navigation

Starter Weppy

Build Status Coverage Status

Starter Weppy is a web application starter kit built on the weppy framework.

TODO:

Run

Requirements:

  • Python 3.4+ or 3.5+

For automated pip and virtual env setup and creation, clone this repository and in your terminal do:

. ./setup.sh
python run.py

Otherwise, do:

pip install -r requirements.txt
python run.py

Docker

To make your application available at http://localhost/:

docker build -t starter-weppy .
docker run -it -p 80:8000 --rm --name starter-weppy starter-weppy

Develop

Running in development mode will enable debug pages, automatically create test, users in multiple states, and upon killing the app, those test users will automatically be deleted from the DB.

To start the app in development mode, do:

python run.py --dev

See starter_weppy/cli.py for cli commands.

Test

py.test -v -s --cov-report term-missing --cov=starter_weppy -r w tests

License

MIT © mijdavis2