Initial commit.

This commit is contained in:
dcooperdalrymple
2024-09-06 16:21:20 -05:00
commit 9387d15c4b
15 changed files with 758 additions and 0 deletions

32
.vscode/ftp-sync.json vendored Normal file
View File

@@ -0,0 +1,32 @@
{
"remotePath": "./public_html/wp-content/plugins/ogre-issuu/",
"host": "og5.cleverogre.com",
"username": "summatio",
"password": "TV0#h0)T622}T",
"port": 22,
"secure": true,
"protocol": "sftp",
"uploadOnSave": true,
"passive": false,
"debug": false,
"privateKeyPath": null,
"passphrase": null,
"agent": null,
"allow": [],
"ignore": [
"\\.vscode",
"\\.git",
"\\.DS_Store",
"\\.gitignore",
"\\Makefile",
"\\ogre-issuu.zip"
],
"generatedFiles": {
"extensionsToInclude": [
".js",
".css",
".map"
],
"path": ""
}
}

5
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"java.project.sourcePaths": [
""
]
}

25
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,25 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Package",
"type": "shell",
"command": "make",
"group": "build",
"presentation": {
"reveal": "silent",
"panel": "shared",
}
},
{
"label": "Compile",
"type": "shell",
"command": "make compile",
"group": "build",
"presentation": {
"reveal": "silent",
"panel": "shared",
}
}
]
}