https://github.com/dcramer/pyconsg-tutorial-bootstrap
https://github.com/dcramer/pyconsg-tutorial-bootstrap
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dcramer/pyconsg-tutorial-bootstrap
- Owner: dcramer
- Created: 2014-06-13T20:48:42.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-06-18T08:07:43.000Z (almost 11 years ago)
- Last Synced: 2025-02-06T11:18:57.092Z (4 months ago)
- Language: Python
- Size: 292 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Slides: http://bit.ly/1pHGAyK
Setup the environment:
::
virtualenv ./env
source ./env/bin/activateInstall dependencies:
::
# python
pip install -e .# node (tools)
npm install# bower (js 3rd party)
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