File tree 5 files changed +20
-6
lines changed
5 files changed +20
-6
lines changed Original file line number Diff line number Diff line change @@ -566,3 +566,6 @@ FodyWeavers.xsd
566
566
567
567
# Dependencies
568
568
Bcrypt.cpp
569
+
570
+ # Files
571
+ .env
Original file line number Diff line number Diff line change @@ -33,7 +33,9 @@ RUN git clone https://github.com/drogonframework/drogon
33
33
# Build and install the Drogon library
34
34
RUN cd drogon && \
35
35
git submodule update --init && \
36
- mkdir build && cd build && cmake .. && make && make install
36
+ mkdir build && cd build && \
37
+ cmake -DCMAKE_BUILD_TYPE=Release .. && \
38
+ make && make install
37
39
38
40
# Clone JWT-CPP repository
39
41
RUN git clone https://github.com/Thalhammer/jwt-cpp.git
Original file line number Diff line number Diff line change @@ -48,7 +48,14 @@ On the project root:
48
48
$ cmake ..
49
49
$ make
50
50
$ ./drogoncore_user_service --action=run-server
51
- $ ./drogoncore_user_service --action=run-server
51
+
52
+ # Create tables
53
+
54
+ $ ./drogon_user_service --action=create-tables
55
+
56
+ # Drop tables
57
+
58
+ $ ./drogon_user_service --action=drop-tables
52
59
53
60
## Running with docker
54
61
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ services:
5
5
context : .
6
6
dockerfile : Dockerfile
7
7
container_name : user_service
8
+ ports :
9
+ - " 8000:8000"
8
10
environment :
9
11
- SECRET_KEY=${SECRET_KEY}
10
12
- DB_HOST=${DB_HOST}
Original file line number Diff line number Diff line change 1
1
cat << EOF > models/model.json
2
2
{
3
3
"rdbms": "postgresql",
4
- "host": ${DB_HOST} ,
4
+ "host": " ${DB_HOST} " ,
5
5
"port": 5432,
6
- "dbname": ${DB_NAME} ,
6
+ "dbname": " ${DB_NAME} " ,
7
7
"schema": "public",
8
- "user": ${DB_USER} ,
9
- "password": ${DB_PASSWORD} ,
8
+ "user": " ${DB_USER} " ,
9
+ "password": " ${DB_PASSWORD} " ,
10
10
"tables": [
11
11
"users",
12
12
"roles",
You can’t perform that action at this time.
0 commit comments