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

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

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
```