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.
23 lines
227 B
Markdown
23 lines
227 B
Markdown
2 years ago
|
# GDG Talk Counter
|
||
|
|
||
|
## Setup
|
||
|
|
||
|
```bash
|
||
|
$ npm install
|
||
|
```
|
||
|
|
||
|
## Development
|
||
|
|
||
|
```bash
|
||
|
# Lanciare in parallelo i seguenti comandi
|
||
|
$ go run -v .
|
||
|
$ npm run dev
|
||
|
```
|
||
|
|
||
|
## Production
|
||
|
|
||
|
```bash
|
||
|
$ npm run build
|
||
|
$ go build -o bin/server .
|
||
|
```
|