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!
- Host: GitHub
- URL: https://github.com/yiplee/blockquiz
- Owner: yiplee
- License: apache-2.0
- Created: 2019-11-09T08:02:14.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-04T04:50:16.000Z (over 5 years ago)
- Last Synced: 2025-03-29T12:35:06.832Z (2 months ago)
- Topics: golang
- Language: Go
- Homepage:
- Size: 236 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
````