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

https://github.com/yiplee/blockquiz

Blockchain courses and quiz here. Have fun :) send "?" for usage!
https://github.com/yiplee/blockquiz

golang

Last synced: about 1 month ago
JSON representation

Blockchain courses and quiz here. Have fun :) send "?" for usage!

Awesome Lists containing this project

README

        

## BlockQuiz

[Usage](./docs/usage.md)

[API Doc](./docs/api.md)

### Build

```shell script
make build

# cross build
make build GOOS=linux GOARCH=amd64

# if you want to use sqlite3, must compile with CGO enable
```

### Config

请参考 config.template.yaml

### Create Database Tables

```shell script
./blockquiz migrate
```

### Run API Server

```shell script
./blockquiz --debug --config your.config.file.path http --port 8080
````

### Run Engine

```shell script
./blockquiz --debug --config your.config.file.path run
````