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
Copy file name to clipboardexpand all lines: README.md
+10-12
Original file line number
Diff line number
Diff line change
@@ -11,32 +11,30 @@
11
11
12
12
This project is configured with a [devcontainer](https://code.visualstudio.com/docs/remote/containers). When openning the project in VSCode you will be asked to reopen it inside a devcontainer. Just wait the container to be ready (it may take some minutes in the first time) and your local environment will be ready with all dependencies and VSCode extensions installed.
13
13
14
-
### Setup with docker-compose
14
+
##Main commands
15
15
16
-
Open terminal inside docker container
16
+
Run the application
17
17
18
18
```bash
19
-
docker-compose run --rm app bash
19
+
make
20
20
```
21
21
22
-
Install dependencies
22
+
Run the tests
23
23
24
24
```bash
25
-
pipenv install --dev
25
+
make test
26
26
```
27
27
28
-
### Running locally
28
+
##Alternative setup with Docker Compose (for non VSCode users)
0 commit comments