2022-08-22 18:51:46 -06:00
|
|
|
|
|
|
|
```
|
2022-08-22 19:28:59 -06:00
|
|
|
cd frontend
|
2022-08-22 18:51:46 -06:00
|
|
|
npm run dist
|
|
|
|
go mod vendor
|
2022-09-26 23:14:29 -06:00
|
|
|
go run backend/cmd/fasten/fasten.go start --config ./config.example.yaml --debug
|
2022-10-09 13:30:26 -06:00
|
|
|
|
|
|
|
docker build -t fasten-couchdb -f docker/couchdb/Dockerfile .
|
2022-10-12 09:53:24 -06:00
|
|
|
docker run --rm -it -p 5984:5984 -v `pwd`/.couchdb/data:/opt/couchdb/data -v `pwd`/.couchdb/config:/opt/couchdb/etc/local.d fasten-couchdb
|
2022-09-21 22:08:21 -06:00
|
|
|
```
|
2022-10-09 13:30:26 -06:00
|
|
|
|
|
|
|
# Docker
|
|
|
|
``
|
|
|
|
|
|
|
|
- http://localhost:9090/web/dashboard - WebUI
|
|
|
|
- http://localhost:9090/database - CouchDB proxy
|
|
|
|
- http://localhost:5984/_utils/ - CouchDB admin UI
|
|
|
|
|
|
|
|
# Credentials
|
|
|
|
- Couchdb:
|
|
|
|
- username: `admin`
|
|
|
|
- password: `mysecretpassword`
|
|
|
|
- WebUI:
|
|
|
|
- username: `testuser`
|
|
|
|
- password: `testuser`
|