An open API service indexing awesome lists of open source software.

https://github.com/dcramer/pyconsg-tutorial-example


https://github.com/dcramer/pyconsg-tutorial-example

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

Setup the environment:

::

mkvirtualenv -p `which python3` pyconsg-tutorial

Install dependencies:

::

pip install -e .
npm install
bower install

Initialize 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