generated from userver-framework/service_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from sabudilovskiy/add_authentication
1) Release Authentication(/lpgin, /request) 2) Add vscode workspace 3) Changed structure of project
- Loading branch information
Showing
63 changed files
with
1,172 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": "../", | ||
"name" : "vsu_timetable" | ||
}, | ||
], | ||
"extensions":{ | ||
"recommendations":[ | ||
"llvm-vs-code-extensions.vscode-clangd", | ||
"Redocly.openapi-vs-code", | ||
"ms-vscode.makefile-tools", | ||
"vadimcn.vscode-lldb", | ||
"ms-vscode.cmake-tools", | ||
"notskm.clang-tidy", | ||
"ms-vscode.cpptools" | ||
] | ||
}, | ||
"settings": { | ||
"files.exclude": { | ||
"third_party": true, | ||
"build*": true, | ||
".*" : true, | ||
"dependencies" : true | ||
}, | ||
"clang-tidy.buildPath": "../build_debug" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
worker-threads: 4 | ||
worker-fs-threads: 2 | ||
logger-level: debug | ||
|
||
is_testing: false | ||
|
||
server-port: 8080 | ||
|
||
dbconnection: 'postgresql://timetable_vsu_backend_user:password@localhost:5432/timetable_vsu_backend_db_1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
worker-threads: 4 | ||
worker-fs-threads: 2 | ||
logger-level: debug | ||
|
||
is_testing: false | ||
|
||
server-port: 8080 | ||
|
||
dbconnection: 'postgresql://user:password@service-postgres:5432/timetable_vsu_backend_db_1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
worker-threads: 4 | ||
worker-fs-threads: 2 | ||
logger-level: debug | ||
|
||
is_testing: true | ||
|
||
server-port: 8080 | ||
|
||
# timetable_vsu_backend_db_1 is the service name + _ + filename of the db_1.sql | ||
dbconnection: 'postgresql://testsuite:password@localhost:15433/timetable_vsu_backend_db_1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
psycopg2 |
Oops, something went wrong.