ide configuration changes, add postgre to compose (#7)
ide configuration changes, add postgre to compose Co-authored-by: Maxchil <m.w.bohdanowicz@gmail.com>
This commit is contained in:
parent
4d6ce1979e
commit
09f943e6c3
10
.docker/docker-compose.debug.yml
Normal file
10
.docker/docker-compose.debug.yml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# Please refer https://aka.ms/HTTPSinContainer on how to setup an https developer certificate for your ASP .NET Core service.
|
||||||
|
version: '3.4'
|
||||||
|
|
||||||
|
services:
|
||||||
|
internship.api:
|
||||||
|
environment:
|
||||||
|
- ASPNETCORE_ENVIRONMENT=Development
|
||||||
|
- ASPNETCORE_URLS=http://+:80
|
||||||
|
volumes:
|
||||||
|
- ~/.vsdbg:/remote_debugger:rw
|
@ -1,9 +1,16 @@
|
|||||||
version: "3.3"
|
version: "3.3"
|
||||||
services:
|
services:
|
||||||
|
|
||||||
internship.api:
|
internship.api:
|
||||||
image: internship.api:latest
|
image: internship.api:latest
|
||||||
build: ../src/Internship.Api
|
build: ../src/Internship.Api
|
||||||
ports:
|
ports:
|
||||||
- 8080:80
|
- 8080:80
|
||||||
|
|
||||||
|
db.postgres:
|
||||||
|
image: postgres
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
POSTGRES_PASSWORD: szwoniu
|
||||||
|
ports:
|
||||||
|
- 5432:5432
|
24
.dockerignore
Normal file
24
.dockerignore
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
**/.classpath
|
||||||
|
**/.dockerignore
|
||||||
|
**/.env
|
||||||
|
**/.git
|
||||||
|
**/.gitignore
|
||||||
|
**/.project
|
||||||
|
**/.settings
|
||||||
|
**/.toolstarget
|
||||||
|
**/.vs
|
||||||
|
**/.vscode
|
||||||
|
**/*.*proj.user
|
||||||
|
**/*.dbmdl
|
||||||
|
**/*.jfm
|
||||||
|
**/azds.yaml
|
||||||
|
**/bin
|
||||||
|
**/charts
|
||||||
|
**/docker-compose*
|
||||||
|
**/Dockerfile*
|
||||||
|
**/node_modules
|
||||||
|
**/npm-debug.log
|
||||||
|
**/obj
|
||||||
|
**/secrets.dev.yaml
|
||||||
|
**/values.dev.yaml
|
||||||
|
README.md
|
52
.vscode/launch.json
vendored
52
.vscode/launch.json
vendored
@ -4,33 +4,31 @@
|
|||||||
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
|
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": ".NET Core Launch (web)",
|
"name": ".NET Core Launch (web)",
|
||||||
"type": "coreclr",
|
"type": "coreclr",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"preLaunchTask": "build",
|
"preLaunchTask": "build",
|
||||||
// If you have changed target frameworks, make sure to update the program path.
|
"program": "${workspaceFolder}/src/Internship.Api/bin/Debug/netcoreapp3.1/Internship.Api.dll",
|
||||||
"program": "${workspaceFolder}/src/Internship.Api/bin/Debug/netcoreapp3.1/Internship.Api.dll",
|
"args": [],
|
||||||
"args": [],
|
"cwd": "${workspaceFolder}/src/Internship.Api",
|
||||||
"cwd": "${workspaceFolder}/src/Internship.Api",
|
"stopAtEntry": false,
|
||||||
"stopAtEntry": false,
|
"serverReadyAction": {
|
||||||
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
|
"action": "openExternally",
|
||||||
"serverReadyAction": {
|
"pattern": "^\\s*Now listening on:\\s+(https?://\\S+)"
|
||||||
"action": "openExternally",
|
|
||||||
"pattern": "^\\s*Now listening on:\\s+(https?://\\S+)"
|
|
||||||
},
|
|
||||||
"env": {
|
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
||||||
},
|
|
||||||
"sourceFileMap": {
|
|
||||||
"/Views": "${workspaceFolder}/Views"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
"env": {
|
||||||
"name": ".NET Core Attach",
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
"type": "coreclr",
|
},
|
||||||
"request": "attach",
|
"sourceFileMap": {
|
||||||
"processId": "${command:pickProcess}"
|
"/Views": "${workspaceFolder}/Views"
|
||||||
}
|
}
|
||||||
]
|
},
|
||||||
|
{
|
||||||
|
"name": ".NET Core Attach",
|
||||||
|
"type": "coreclr",
|
||||||
|
"request": "attach",
|
||||||
|
"processId": "${command:pickProcess}"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
6
.vscode/settings.json
vendored
Normal file
6
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"files.exclude": {
|
||||||
|
"**/bin": true,
|
||||||
|
"**/obj": true
|
||||||
|
}
|
||||||
|
}
|
23
.vscode/tasks.json
vendored
23
.vscode/tasks.json
vendored
@ -37,6 +37,27 @@
|
|||||||
"/consoleloggerparameters:NoSummary"
|
"/consoleloggerparameters:NoSummary"
|
||||||
],
|
],
|
||||||
"problemMatcher": "$msCompile"
|
"problemMatcher": "$msCompile"
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
"label": "up",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "docker-compose",
|
||||||
|
"args": [
|
||||||
|
"-f",
|
||||||
|
".docker/docker-compose.yaml",
|
||||||
|
"up",
|
||||||
|
"--build"
|
||||||
|
],
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "dotnet restore",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "dotnet",
|
||||||
|
"args": [
|
||||||
|
"restore"
|
||||||
|
],
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"sdk": {
|
"sdk": {
|
||||||
"version": "3.1.200"
|
"version": "3.1.103"
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,2 +0,0 @@
|
|||||||
bin\
|
|
||||||
obj\
|
|
Loading…
Reference in New Issue
Block a user