You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Create an `.env` file and copy the contents from the `.env.example` to the file and set the respective values. A postgres database can be created with PG ADMIN or psql
18
+
19
+
- Run Locally
20
+
```bash
21
+
$ alembic upgrade heads
22
+
```
23
+
```bash
24
+
$ uvicorn app.main:app --reload
25
+
```
26
+
27
+
- Run With Docker
28
+
```bash
29
+
$ docker-compose up --build -d --remove-orphans
30
+
```
31
+
OR
32
+
```bash
33
+
$ make build
34
+
```
35
+
36
+
- Test Coverage
37
+
```bash
38
+
$ pytest --disable-warnings -vv
39
+
```
40
+
OR
41
+
```bash
42
+
$ make test
43
+
```
44
+
45
+
#### LIVE URL [NOREBASE Challenge Documentation](https://norebase-challenge.fly.dev)
0 commit comments