Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kunder-lab/kunder-workshop-bk-python
https://github.com/kunder-lab/kunder-workshop-bk-python
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/kunder-lab/kunder-workshop-bk-python
- Owner: kunder-lab
- Created: 2019-08-27T20:24:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-20T01:35:01.000Z (almost 4 years ago)
- Last Synced: 2023-03-01T04:55:55.363Z (almost 2 years ago)
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 28
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Requirements
```
Python 3
```### Create Virtual Env
```
cd kunder-workshop-bk-python
python3 -m venv ./.virtualenvs/kunder-workshop-bk-python
```## Install
```
pip3 install -r requirement.txt
```## Run
```
cd kunder-workshop-bk-python
source .virtualenvs/kunder-workshop-bk-python/bin/activateexport FLASK_APP=app.py
export FLASK_ENV=development
flask run```