Skip to content

Commit

Permalink
Add CONTRIBUTING.md
Browse files Browse the repository at this point in the history
  • Loading branch information
andylibrian committed Mar 21, 2021
1 parent 05c94c4 commit d767893
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 38 deletions.
42 changes: 42 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Terjang

## Development

Prerequisites:
- Go (tested version: 1.15)
- Node (tested version: 14)

Build backend:

```bash
go build -o ./bin/terjang ./cmd/terjang/
```

Run server:

```bash
./bin/terjang server
```

Run a worker on another terminal:

```bash
./bin/terjang worker
```

Install frontend:

```bash
cd web
npm install
```

Run frontend:

```bash
./node_modules/.bin/vue-cli-service serve
```

Then open http://localhost:8080


40 changes: 2 additions & 38 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,43 +63,7 @@ docker-compose up -d
Then open [http://localhost:9009](http://localhost:9009)


## Development

Prerequisites:
- Go (tested version: 1.15)
- Node (tested version: 14)

Build backend:

```bash
go build -o ./bin/terjang ./cmd/terjang/
```

Run server:

```bash
./bin/terjang server
```

Run a worker on another terminal:

```bash
./bin/terjang worker
```

Install frontend:

```bash
cd web
npm install
```

Run frontend:

```bash
./node_modules/.bin/vue-cli-service serve
```

Then open http://localhost:8080
## Contributing

See [Contributing](CONTRIBUTING.md)

0 comments on commit d767893

Please sign in to comment.