Skip to content

Commit bf0c6f1

Browse files
committed
Update README.md
1 parent 246a8d6 commit bf0c6f1

1 file changed

Lines changed: 32 additions & 7 deletions

File tree

README.md

Lines changed: 32 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,41 @@
1111

1212
## Run
1313

14-
```python
15-
poetry shell
16-
poetry install
17-
python3 main.py --env local|dev|prod --debug
14+
### Launch docker
15+
```shell
16+
> docker-compose -f docker/docker-compose.yml up
1817
```
1918

20-
## Formatting
19+
### Install dependency
20+
```shell
21+
> poetry shell
22+
> poetry install
23+
```
2124

22-
```python
23-
pre-commit
25+
### Apply alembic revision
26+
```shell
27+
> alembic upgrade head
28+
```
29+
30+
### Run server
31+
```shell
32+
> python3 main.py --env local|dev|prod --debug
33+
```
34+
35+
### Run test codes
36+
```shell
37+
> make test
38+
```
39+
40+
### Make coverage report
41+
```shell
42+
> make cov
43+
```
44+
45+
### Formatting
46+
47+
```shell
48+
> pre-commit
2449
```
2550

2651
## SQLAlchemy for asyncio context

0 commit comments

Comments
 (0)