36 lines
955 B
Markdown
36 lines
955 B
Markdown
> This doc is a WIP and will be expanded shortly.
|
|
>
|
|
> In the meantime, please consider looking at the extensive docs in the [Fasten Docs Repository](https://github.com/fastenhealth/docs/tree/main/technical)
|
|
|
|
|
|
```
|
|
cd frontend
|
|
npm run dist
|
|
go mod vendor
|
|
go run backend/cmd/fasten/fasten.go start --config ./config.example.yaml --debug
|
|
|
|
docker build -t fasten-couchdb -f docker/couchdb/Dockerfile .
|
|
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
|
|
```
|
|
|
|
# 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`
|
|
|
|
|
|
# Running tests
|
|
|
|
- ng test --include='**/base_client.spec.ts'
|
|
- ng test --include='lib/**/*.spec.ts'
|