Skip to content

Commit ae5d8c2

Browse files
major push ona
1 parent 980171c commit ae5d8c2

27 files changed

+3495
-382
lines changed
Lines changed: 77 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,83 @@
11
{
22
"folders": [
33
{
4-
"path": "../media/developer/btrfs/officialmofabs/officialmofabs-io/cloud-development-projects/.devcontainer/cloud-dev.code-workspace.."
4+
"path": "/home/ubuntu/cloud-development-projects/.devcontainer/cloud-dev.code-workspace"
5+
},{
6+
"folders": [
7+
{
8+
"path": "../../../../media/ubuntu/btrfs/vsproject-directory.git"
9+
}
10+
],
11+
"launch": {
12+
"configurations": [
13+
{
14+
"name": "(gdb-oneapi) cmelf Launch",
15+
"miDebuggerPath": "gdb-oneapi",
16+
"MIMode": "gdb",
17+
"type": "cppdbg",
18+
"request": "launch",
19+
"preLaunchTask": "",
20+
"postDebugTask": "",
21+
"stopAtEntry": true,
22+
"program": "/home/ubuntu/projects/cmake/Utilities/cmelf",
23+
"cwd": "${workspaceFolder}/build",
24+
"args": [],
25+
"environment": [
26+
{
27+
"name": "ZET_ENABLE_PROGRAM_DEBUGGING",
28+
"value": "1"
29+
},
30+
{
31+
"name": "IGC_EnableGTLocationDebugging",
32+
"value": "1"
33+
}
34+
],
35+
"externalConsole": false,
36+
"setupCommands": [
37+
{
38+
"description": "Disable MI-async",
39+
"text": "set mi-async off",
40+
"ignoreFailures": true
41+
},
42+
{
43+
"description": "Enable auto-load for all paths. Considered a security risk. See link for details: https://sourceware.org/gdb/current/onlinedocs/gdb.html/Auto_002dloading-safe-path.html",
44+
"text": "set auto-load safe-path /",
45+
"ignoreFailures": true
46+
},
47+
{
48+
"description": "Enable pretty-printing for gdb",
49+
"text": "set print pretty on",
50+
"ignoreFailures": true
51+
},
52+
{
53+
"description": "Set Disassembly Flavor to Intel",
54+
"text": "set disassembly intel",
55+
"ignoreFailures": true
56+
},
57+
{
58+
"description": "Do not display function arguments when printing a stack frame",
59+
"text": "set print frame-arguments none",
60+
"ignoreFailures": true
61+
}
62+
]
63+
}
64+
]
65+
}
566
}
667
],
768
"settings": {}
8-
}
69+
}DATABASE_HOST=ecampusdev-spaces
70+
DATABASE_USER=ubuntu
71+
DATABASE_PASSWORD=applesauce
72+
DATABASE_DB=ecampusdev-spaces
73+
DATABASE_PORT=5432
74+
DATABASE_URL=postgresql://${DATABASE_USER}:${DATABASE_PASSWORD}@${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_DB}
75+
DATABASE_URL_TEST=postgresql://${DATABASE_USER}:${DATABASE_PASSWORD}@${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_DB}_test
76+
DATABASE_URL_DEV=postgresql://${DATABASE_USER}:${DATABASE_PASSWORD}@${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_DB}_dev
77+
DATABASE_URL_PROD=postgresql://${DATABASE_USER}:${DATABASE_PASSWORD}@${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_DB}_prod
78+
DATABASE_URL_STAGING=postgresql://${DATABASE_USER}:${DATABASE_PASSWORD}@${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_DB}_staging
79+
DATABASE_URL_DEVELOPMENT=postgresql://${DATABASE_USER}:${DATABASE_PASSWORD}@${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_DB}_development
80+
DATABASE_URL_DEVELOPMENT_TEST=postgresql://${DATABASE_USER}:${DATABASE_PASSWORD}@${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_DB}_development_test
81+
DATABASE_URL_DEVELOPMENT_DEV=postgresql://${DATABASE_USER}:${DATABASE_PASSWORD}@${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_DB}_development_dev
82+
DATABASE_URL_DEVELOPMENT_PROD=postgresql://${DATABASE_USER}:${DATABASE_PASSWORD}@${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_DB}_development_prod
83+
DATABASE_URL_DEVELOPMENT_STAGING=postgresql://${DATABASE_USER}:${DATABASE_PASSWORD}@${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_DB}_development_staging

.devcontainer/devcontainer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,12 @@
115115
"ms-azuretools.vscode-azureresourcegroups",
116116
"ms-dotnettools.csdevkit",
117117
"HashiCorp.HCL",
118-
"coder.coder-remote"
118+
"coder.coder-remote",
119+
"c0der-himel.vscode-wev-dev-extension-pack",
120+
"eliostruyf.vscode-front-matter-beta",
121+
"loiane.frontend-extension-pack",
122+
"fabiospampinato.vscode-github-notifications-bell",
123+
"SimonSiefke.ddev"
119124
]
120125
}
121126
},

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,3 +351,4 @@ ASALocalRun/
351351
# MFractors (Xamarin productivity tool) working folder
352352
.mfractor/
353353

354+
.qodo

src/dotnet-mssql/test-project/obj/Debug/netcoreapp5.0/aspnetapp.AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
[assembly: System.Reflection.AssemblyCompanyAttribute("aspnetapp")]
1515
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
1616
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
17-
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+4841ddee2a6345395407e5a66d78640335480d7c")]
17+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+980171c00d38e2fe252ecbadb09b6a8167b76b47")]
1818
[assembly: System.Reflection.AssemblyProductAttribute("aspnetapp")]
1919
[assembly: System.Reflection.AssemblyTitleAttribute("aspnetapp")]
2020
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
58f388c27ef7a3badfea4304849a016a06f130e1c2b342602adc2213f199d13d
1+
88826ceedbf280e5bc13caf6198cbd405907f6aab534f9e1584327febe9e955f

src/dotnet-mssql/test-project/obj/Debug/netcoreapp5.0/aspnetapp.GeneratedMSBuildEditorConfig.editorconfig

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
is_global = true
22
build_property.TargetFramework = netcoreapp5.0
3+
build_property.TargetFrameworkIdentifier = .NETCoreApp
4+
build_property.TargetFrameworkVersion = v5.0
35
build_property.TargetPlatformMinVersion =
46
build_property.UsingMicrosoftNETSdkWeb = true
57
build_property.ProjectTypeGuids =
@@ -8,7 +10,7 @@ build_property.PlatformNeutralAssembly =
810
build_property.EnforceExtendedAnalyzerRules =
911
build_property._SupportedPlatformList = Linux,macOS,Windows
1012
build_property.RootNamespace = aspnetapp
11-
build_property.ProjectDir = /home/developer/Workspace/ecampuslearning-dev/cloud-development-projects/src/dotnet-mssql/test-project/
13+
build_property.ProjectDir = /home/ubuntu/cloud-development-projects/src/dotnet-mssql/test-project/
1214
build_property.EnableComHosting =
1315
build_property.EnableGeneratedComInterfaceComImportInterop =
1416
build_property.EffectiveAnalysisLevelStyle = 5.0
10.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)