https://github.com/oleshkooo/test-task-bits-orchestra
https://github.com/oleshkooo/test-task-bits-orchestra
test-task
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/oleshkooo/test-task-bits-orchestra
- Owner: oleshkooo
- Created: 2023-05-30T18:57:44.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-30T18:59:13.000Z (over 2 years ago)
- Last Synced: 2025-02-15T04:26:59.501Z (12 months ago)
- Topics: test-task
- Language: TypeScript
- Homepage:
- Size: 445 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
_\*Replace **yarn** with your package manager (e.g. npm, pnpm)_
# Run in development mode
Run server and website:
```
yarn start:dev
```
### Or use 2 terminals
1. Run server (terminal 1)
```
yarn server
```
2. Run website in development mode (terminal 2)
```
yarn dev
```
# Run in production mode
1. Build website
```
yarn build
```
2. Run server and website
```
yarn start:prod
```
### Or use 2 terminals:
1. Build website
```
yarn build
```
2. Run server (terminal 1)
```
yarn server
```
3. Run website in production mode (terminal 2)
```
yarn dev
```