File tree 2 files changed +3
-10
lines changed
2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 1
1
.PHONY : up server dashboard build
2
2
3
3
up :
4
+ docker-compose run server /bin/sh -c ' cd server/ && go run main.go --config ./configs/codeflow.dev.yml migrate up'
4
5
docker-compose up -d redis mongo
5
6
docker-compose up server dashboard
6
7
Original file line number Diff line number Diff line change @@ -7,19 +7,11 @@ Install [Docker Compose](https://docs.docker.com/compose/install/)
7
7
8
8
Copy ` server/codeflow.yml ` to ` server/codeflow.dev.yml `
9
9
10
- You should set ` jwt_secret_key ` and ` okta_org ` before starting the server!
11
- ``` yaml
12
- codeflow :
13
- jwt_secret_key :
14
- allowed_origins :
15
- auth :
16
- okta_org :
17
- ` ` `
18
-
19
10
To start the server and all dependencies run:
20
11
```
21
- $ make
12
+ $ make up
22
13
```
14
+ Check ` Makefile ` to see what's happening under the hood.
23
15
24
16
Local dashboard will be started on [ http://localhost:3000 ] ( http://localhost:3000 )
25
17
You can’t perform that action at this time.
0 commit comments