https://github.com/dcramer/pyconsg-tutorial-example
https://github.com/dcramer/pyconsg-tutorial-example
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dcramer/pyconsg-tutorial-example
- Owner: dcramer
- Created: 2014-06-09T20:48:46.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-06-18T02:13:44.000Z (almost 11 years ago)
- Last Synced: 2025-03-06T17:57:37.843Z (3 months ago)
- Language: Python
- Size: 484 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Setup the environment:
::
mkvirtualenv -p `which python3` pyconsg-tutorial
Install dependencies:
::
pip install -e .
npm install
bower installInitialize the database:
::
bin/create-db
Load some dummy data:
::
bin/load-mocks
Start the webserver:
::
bin/web
Run Python tests:
::
py.test
Run JavaScript tests:
::
npm run test
Run Selenium end-to-end tests:
::
npm run protractor