blob: 0670f5e1336837578bfecceb7e3ec7a620f4a8e5 (
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
sleep 2
cd ../demo/
python ../src/wsgi.py &
cd ../..
go run jwt_mock.go &
sleep 2
export PER_PAGE=2
export COLLECTOR_URL=http://localhost:8000
export JWT_URL=:http://localhost:8080
npm run start
|