Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paralect/ship-template
A toolkit for makers to ship better products faster 🚀
https://github.com/paralect/ship-template
aws boilerplate digitalocean docker kubernetes mantine mongodb nextjs nodejs product react react-query ship starter typescript
Last synced: 2 months ago
JSON representation
A toolkit for makers to ship better products faster 🚀
- Host: GitHub
- URL: https://github.com/paralect/ship-template
- Owner: paralect
- Created: 2024-08-19T12:37:21.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-10-21T10:22:09.000Z (3 months ago)
- Last Synced: 2024-10-23T08:17:33.295Z (3 months ago)
- Topics: aws, boilerplate, digitalocean, docker, kubernetes, mantine, mongodb, nextjs, nodejs, product, react, react-query, ship, starter, typescript
- Language: TypeScript
- Homepage: https://ship.paralect.com
- Size: 946 KB
- Stars: 2
- Watchers: 5
- Forks: 0
- 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.