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
The boilerplate is prepared to run tests using Jest. We usually group the tests in folders called `__tests__` (following Jest convention) for each module of the application. To run the tests use the following commands:
47
+
The boilerplate is prepared to run tests using Jest. We usually group the tests in folders called `__tests__` (following Jest convention) for each module of the application. To run the tests use the following command:
67
48
68
-
### With Docker
69
49
```sh
70
-
$ docker compose up
71
-
72
-
$ yarn test
73
-
```
74
-
75
-
### Locally
76
-
```sh
77
-
$ yarn dev
78
-
79
50
$ yarn test
80
51
```
81
52
@@ -110,17 +81,6 @@ This boilerplate follows ideas from multiple good software development practices
110
81
111
82
To run your app in production mode, you'll need to follow these steps:
112
83
113
-
### With Docker
114
-
115
-
1. Define any environment variable important for production
116
-
2. Go to `docker-compose.production.yaml` file, and add necessary configurations
117
-
3. Run the following command:
118
-
```sh
119
-
$ docker-compose -f docker-compose.yaml -f docker-compose.production.yaml up
120
-
```
121
-
122
-
### Locally
123
-
124
84
1. Build the application with `yarn build`
125
85
2. Define any environment variable important for production
0 commit comments