Skip to content

nerjan/pwr-gl2

 
 

Repository files navigation

pwr-gl2

pwr-gl2 is a working name, we'll change it later, when we know what the app is doing and come up with a fancy name.

How to run

First, clone it, set up virtual environment and install requirements:

$ git clone https://github.com/boryszef/pwr-gl2.git
$ cd pwr-gl2
$ virtualenv venv
$ source venv/bin/activate
$ pip install -r requirements.txt

Download the config.ini file with key of our app (not included in the repo) and place it in the top directory.

First, make sure the database is built and perform migrations (if any):

export FLASK_APP=app
export FLASK_DEBUG=1
flask db migrate
flask db upgrade

IMPORTANT: do not run flask db init. The migrations directory is now included in the repository and contains function that populates the database with question as well as a test user (username: test, password: test).

Finally, run the app:

python run.py

Testing

Testing uses additional modules: Flask-Testing and selenium. Testing the frontend with selenium can be tricky. You need a matching set of selenium, firefox and geckodriver. The latter one can be found here: https://github.com/mozilla/geckodriver/releases A working combination of those three is Firefox 60, Selenium 3.13 and geckodriver 0.21. Test can be run automatically:

python -m unittest

Or using pytest (requires installation of pytest):

pytest tests

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 68.9%
  • HTML 29.1%
  • CSS 1.6%
  • Mako 0.4%