Initializing flask project
Project description
CS162 Kanban Board
The website is deployed on heroku and can be accessed on the following url: https://kanban-app-cs162.herokuapp.com/
Project Structure
/web contains application code.
/web/static css files.
/web/templates html files.
/web/__init__.py project initializer file.
/web/auth.py routes related to authorization/authentication.
/web/config.py different configurations based on running environment (test/dev/prod).
/web/models.py ORM mapping (from DB models to python classes) using SQLAlchemy.
/web/routes.py application routes.
/unit_test contains 25 unit tests in total. Tests for: registration, login, reset password, and kanban operations (todo, doing, done).
/migrations directory used to control DB migrations, using Flask-migrate.
.env/example contains all variables needed on your .env so the project runs on production or locally.
Procfile used for heroku deployment.
Virtual Environment
Creation of virtualenv:
$ virtualenv -p python3 venv
If the above code does not work, you could also do
$ python3 -m venv venv
To activate the virtualenv:
$ source venv/bin/activate
Or, if you are using Windows - reference source:
$ venv\Scripts\activate
To deactivate the virtualenv (after you finished working):
$ deactivate
Install dependencies in virtual environment:
$ pip3 install -r requirements.txt
Environment Variables
.env.example is a file containing all the environment variables that you need to define in a .env file for this project to run.
Run Application
Start the server on a mac locally by running:
$ source venv/bin/activate
$ pip install -r requirements.txt
$ export FLASK_ENV=dev
$ export FLASK_APP=web
$ python3 -m flask run
Unit Tests
To run the unit tests on mac use the following commands:
$ source venv/bin/activate
$ pip install -r requirements.txt
$ export FLASK_ENV=test
$ export SECRET_KEY='test-key'
$ python -m pytest unit_test
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pykanban-0.1.0.tar.gz.
File metadata
- Download URL: pykanban-0.1.0.tar.gz
- Upload date:
- Size: 17.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.25.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b46b61091b29953ee4b46736862b85d246eebf174bbe23325aadfc5b3001e604
|
|
| MD5 |
f74a0a77252fd8bd4a8b0524c63096da
|
|
| BLAKE2b-256 |
38f14c7d5910305530468a5028772ddf1ecce8a90edb9fa38e0aba343400c931
|
File details
Details for the file pykanban-0.1.0-py2.py3-none-any.whl.
File metadata
- Download URL: pykanban-0.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 16.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.25.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e238791d084cb252d136b397bbcab91c8876d3ec513e68ab6c29ad9f1f62d576
|
|
| MD5 |
8f33d35984cfadeb4ff24d5a73227667
|
|
| BLAKE2b-256 |
f6d833570a51d29372aa6fe9818dc693355821e155aa93549040767e5f80929b
|