Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iov-one/benchsrv
Collect and compare benchmarks
https://github.com/iov-one/benchsrv
Last synced: 10 days ago
JSON representation
Collect and compare benchmarks
- Host: GitHub
- URL: https://github.com/iov-one/benchsrv
- Owner: iov-one
- Created: 2019-03-08T11:12:07.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-11T08:25:26.000Z (almost 6 years ago)
- Last Synced: 2024-11-06T22:12:54.320Z (about 2 months ago)
- Language: Go
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Local development
Run PostgreSQL instance locally and set the `DATABASE_URL` environment variable.
```sh
# terminal 1
$ docker run -it --rm -e POSTGRES_PASSWORD='' -p 5432:5432 postgres:alpine# terminal 2
$ export DATABASE_URL='host=localhost port=5432 database=postgres user=postgres sslmode=disable'
$ go run .
```