File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 17
17
18
18
env :
19
19
PYTHON : ${{ matrix.python-version }}
20
-
20
+ AIDBOX_LICENSE : ${{ secrets.AIDBOX_LICENSE}}
21
21
steps :
22
22
- uses : actions/checkout@v3
23
23
- name : Set up Python ${{ matrix.python-version }}
Original file line number Diff line number Diff line change 1
- FROM python:3.11
1
+ FROM python:${PYTHON}
2
2
RUN pip install pipenv
3
3
4
4
RUN mkdir /app
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ services:
17
17
ports :
18
18
- " 8080:8080"
19
19
env_file :
20
- - .env
20
+ - env_tests
21
21
environment :
22
22
PGHOST : database
23
23
PGDATABASE : devbox
@@ -49,7 +49,9 @@ services:
49
49
links :
50
50
- devbox
51
51
env_file :
52
- - .env
52
+ - env_tests
53
+ environment :
54
+ - PYTHON=${PYTHON}
53
55
ports :
54
56
- " 8081:8081"
55
57
volumes :
Original file line number Diff line number Diff line change 1
- # Visit https://aidbox.app/ui/portal to get a licence key
2
- AIDBOX_LICENSE=
3
-
4
- # comment to get unsecured box
5
1
AIDBOX_CLIENT_ID=root
6
2
AIDBOX_CLIENT_SECRET=secret
7
3
AIDBOX_BASE_URL=http://devbox:8080
@@ -23,3 +19,5 @@ AIO_APP_PATH=.
23
19
24
20
OPENID_RSA=/var/config/jwtRS256.key
25
21
OPENID_RSA_PUB=/var/config/jwtRS256.key.pub
22
+
23
+ AIDBOX_STDOUT_PRETTY=debug
You can’t perform that action at this time.
0 commit comments