You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
509 B
Markdown

5 years ago
# bit4sat
5 years ago
## Installation
- init/install the right node version in `.nvmrc`
```
nvm install $(cat .nvmrc)
nvm use
```
5 years ago
- install yarn (optional)
5 years ago
`sudo apt update && sudo apt install -y yarn`
- install deps
`yarn`
5 years ago
or with npm
`npm install`
## start dev server
With yarn:
`yarn run start`
or with npm
`npm start`
5 years ago
## Backend Server
Run:
```
> git submodule init
> git submodule update
```
The go server will be find in the server folder. To Run it use:
```
> cd server
> make
> ./bit4sat
```