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
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Copy file name to clipboardexpand all lines: src/client/README.md
+28
Original file line number
Diff line number
Diff line change
@@ -37,8 +37,36 @@ Instead, it will copy all the configuration files and the transitive dependencie
37
37
38
38
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
39
39
40
+
### `npm run cypress:open`
41
+
42
+
Opens cypress dashboard to manage e2e tests
43
+
44
+
### `npm run start:ci`
45
+
46
+
Start app con port 3030. Shortcut for ci e2e step
47
+
48
+
### `npm run cypress:run`
49
+
50
+
**Note: you need to start client app to use this command**
51
+
52
+
Runs e2e tests.
53
+
54
+
### `npm run test:e2e`
55
+
56
+
Runs e2e tests. It also starts client app on default port `3030` before running tests using `start-server-and-test` package
57
+
58
+
### `npm run lint`
59
+
60
+
Check app code stype
61
+
40
62
## Learn More
41
63
42
64
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
43
65
44
66
To learn React, check out the [React documentation](https://reactjs.org/).
67
+
68
+
## License
69
+
70
+
Copyright (c) 2019 Rendered Text
71
+
72
+
Distributed under the MIT License. See the file [LICENSE.md](../../LICENSE.md) in repo root.
<palign="center">A progressive <ahref="http://nodejs.org"target="blank">Node.js</a> framework for building efficient and scalable server-side applications, heavily inspired by <ahref="https://angular.io"target="blank">Angular</a>.</p>
App is built using [Nest](https://github.com/nestjs/nest) framework TypeScript starter repository.
30
4
31
5
## Installation
32
6
33
7
```bash
34
8
$ npm install
35
9
```
36
10
11
+
## Configuration
12
+
13
+
These values should work on development environment without changes
14
+
15
+
### Copy app config
16
+
17
+
```bash
18
+
$ cp sample.env .env
19
+
```
20
+
21
+
### Copy db config
22
+
23
+
```bash
24
+
$ cp ormconfig.sample.json ormconfig.json
25
+
```
26
+
27
+
### Run migrations
28
+
29
+
```bash
30
+
$ npm run migrate:up
31
+
```
32
+
37
33
## Running the app
38
34
39
35
```bash
@@ -47,6 +43,14 @@ $ npm run start:dev
47
43
$ npm run start:prod
48
44
```
49
45
46
+
## Lint
47
+
48
+
Check app code style
49
+
50
+
```bash
51
+
$ npm run lint
52
+
```
53
+
50
54
## Test
51
55
52
56
```bash
@@ -60,16 +64,18 @@ $ npm run test:e2e
60
64
$ npm run test:cov
61
65
```
62
66
63
-
## Support
64
-
65
-
Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please [read more here](https://docs.nestjs.com/support).
0 commit comments