https://github.com/the-akira/flask-tdd
Flask TDD Project
https://github.com/the-akira/flask-tdd
flask flask-sqlalchemy javascript python
Last synced: about 2 months ago
JSON representation
Flask TDD Project
- Host: GitHub
- URL: https://github.com/the-akira/flask-tdd
- Owner: the-akira
- Created: 2019-11-18T00:06:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T22:52:40.000Z (almost 2 years ago)
- Last Synced: 2025-01-18T18:46:14.852Z (3 months ago)
- Topics: flask, flask-sqlalchemy, javascript, python
- Language: Python
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask Test-Driven Development
Inspired by the tutorial [Flask TDD](https://github.com/mjhea0/flaskr-tdd).
## Installation
### Clone the Repository
```
git clone https://github.com/the-akira/Flask-TDD.git
```### Inside the Main Directory
Create a Virtual Environment
```
python -m venv myvenv
```Activate the Virtual Environment
```
source myvenv/bin/activate
```Install Requirements
```
pip install -r requirements.txt
```### Inside app
Run the Application
```
python app.py
```Run the tests
```
python app-test.py
```