blob: 01115e3d2a9cffd78aa71088d451ee656b83a8bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
export COUCHDB_USER=couchdb
export COUCHDB_PASSWORD=insecure
export COUCHDB_NAME=test
export COUCHDB_HOSTNAME=localhost
cd soc_collector/docker/
docker compose up -d
read
cd ../demo/
python ../src/wsgi.py &
cd ../..
go run jwt_mock.go &
read
export PER_PAGE=2
export COLLECTOR_URL=http://localhost:8000
export JWT_URL=:http://localhost:8080
npm run start
|