Add docker

This commit is contained in:
Sidharth Vinod 2023-06-15 12:08:54 +05:30
parent 307aa6f623
commit 66116ef8a0
No known key found for this signature in database
GPG Key ID: FB5CCD378D3907CD
2 changed files with 18 additions and 0 deletions

View File

@ -72,6 +72,15 @@ The `test` script and others are in the top-level `package.json` file.
All tests should run successfully without any errors or failures. (You might see _lint_ or _formatting_ warnings; those are ok during this step.)
### Docker
If you are using docker and docker-compose, you have self-documented `run` bash script, which is a convenient alias for docker-compose commands:
```bash
./run install # npx pnpm install
./run test # pnpm test
```
## Contributing Code
The basic steps for contributing code are:

View File

@ -66,6 +66,15 @@ The `test` script and others are in the top-level `package.json` file.
All tests should run successfully without any errors or failures. (You might see _lint_ or _formatting_ warnings; those are ok during this step.)
### Docker
If you are using docker and docker-compose, you have self-documented `run` bash script, which is a convenient alias for docker-compose commands:
```bash
./run install # npx pnpm install
./run test # pnpm test
```
## Contributing Code
The basic steps for contributing code are: