https://github.com/paralect/js-vacancy-test-task
A template of Paralect Ship boilerplate for accomplishing test task Full-Stack JavaScript Developer in Paralect
https://github.com/paralect/js-vacancy-test-task
Last synced: 6 months ago
JSON representation
A template of Paralect Ship boilerplate for accomplishing test task Full-Stack JavaScript Developer in Paralect
- Host: GitHub
- URL: https://github.com/paralect/js-vacancy-test-task
- Owner: paralect
- Created: 2023-11-23T10:04:42.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-23T10:04:56.000Z (about 2 years ago)
- Last Synced: 2024-04-13T22:13:33.950Z (over 1 year ago)
- Language: TypeScript
- Size: 449 KB
- Stars: 0
- Watchers: 8
- Forks: 64
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [Documentation](https://ship.paralect.com/docs/introduction)
## Starting Application with Turborepo 🚀
To run the infrastructure and all services -- just run:
```sh
pnpm start
```
### Running Infra and Services Separately with Turborepo
1. Start base infrastructure services in Docker containers:
```sh
pnpm run infra
```
2. Run the services with Turborepo:
```sh
pnpm run turbo-start
```
## Using Ship with Docker
To run the infrastructure and all services, execute:
```sh
pnpm run docker
```
### Running Infra and Services Separately with Docker
1. Start base infrastructure services in Docker containers:
```sh
pnpm run infra
```
2. Run the services you need:
```sh
./bin/start.sh api web
```
You can also run infrastructure services separately using the `./bin/start.sh` bash script.