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.
24 lines
359 B
Markdown
24 lines
359 B
Markdown
2 years ago
|
# Knot Toolbox
|
||
|
|
||
|
A knot web tool to work and share knots
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
### Development
|
||
|
|
||
|
The following command will start the backend (by default on `:4000`) and the ViteJS development server (by default on `:3000`).
|
||
|
|
||
|
```bash shell
|
||
|
$ go run -v ./cmd/develop
|
||
|
```
|
||
|
|
||
|
### Production
|
||
|
|
||
|
```bash shell
|
||
|
$ npm run build
|
||
|
$ go run -v ./cmd/server
|
||
|
|
||
|
# or just run...
|
||
|
$ make
|
||
|
```
|