@@ -12,40 +12,58 @@ To run the Flask application, follow these steps:
12
12
cd flask-api-sqlite-db
13
13
```
14
14
15
- 1. ** Install, initialize and activate a virtualenv using:**
15
+ 1. ** Initialize and activate a virtualenv using:**
16
16
17
17
` ` ` bash
18
- pip install virtualenv
19
- python -m virtualenv venv
20
- source venv/bin/activate
18
+ python3 -m venv .venv
19
+ source .venv/bin/activate
21
20
` ` `
22
21
23
22
> ** Note** - In Windows, the ` venv` does not have a ` bin` directory. Therefore, you' d use the analogous command shown below:
24
23
25
24
```bash
26
- source venv\Scripts\activate
25
+ source . venv\Scripts\activate
27
26
```
28
27
29
- 1. **Install the dependencies :**
28
+ 1. **Install the app as an editable package :**
30
29
31
30
```bash
32
- pip install -r requirements.txt
31
+ python3 -m pip install -e src
33
32
```
34
33
35
- 1. **Execute the following command in your terminal to start the flask app **
34
+ 1. **Execute the following command to add the database name and apply the migrations: **
36
35
37
36
```bash
38
37
export DATABASE_FILENAME=testdb.db
39
- export FLASK_APP=src.app
40
- export FLASK_ENV=development
41
- flask run --reload
38
+ python3 -m flask --app src.flaskapp db upgrade --directory src/flaskapp/migrations
42
39
```
43
- ### Run the tests
44
40
45
- 1. **Inside your virtual environment, execute the following command to run the tests **
41
+ 1. **Execute the following command to run the flask application: **
46
42
47
43
```bash
48
- python flask_test.py
44
+ python3 -m flask --app src.flaskapp run --reload
45
+ ```
46
+
47
+ ### Development
48
+
49
+ 1. **Inside your virtual environment, execute the following command to install the development requirements:**
50
+
51
+ ```bash
52
+ pip install -r requirements-dev.txt
53
+ ```
54
+
55
+ 1. **Execute the following command to install the pre commit hooks:**
56
+
57
+ ```bash
58
+ pre-commit install
59
+ ```
60
+
61
+ ### Testing
62
+
63
+ 1. **Execute the following command to run the tests**
64
+
65
+ ```bash
66
+ pytest
49
67
```
50
68
51
69
## API Documentation
@@ -208,5 +226,3 @@ The API will return these error types when the request fails:
208
226
"total_executions": 10
209
227
}
210
228
```
211
-
212
-
0 commit comments