An open API service indexing awesome lists of open source software.

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

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
```