Skip to content

Commit

Permalink
Merge pull request #1 from Accuraty/init-commit
Browse files Browse the repository at this point in the history
initial commit
  • Loading branch information
jtherrien-accuraty authored Jul 20, 2021
2 parents ad547e8 + 19ba9f4 commit ba5c993
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 54 deletions.
108 changes: 54 additions & 54 deletions sftp.json-example → .vscode/sftp.json-example
Original file line number Diff line number Diff line change
@@ -1,54 +1,54 @@
{
"name": "CHRC 2021 Antilles (DS2030)",
"host": "ds2030.accuraty.net",
"username": "chrcantillesftpABC<<<",
"password": "awesomePasswerd<<<",
"context": ".",
"protocol": "ftp",
"port": 21,
"secure": true,
"secureOptions": {
"rejectUnauthorized": false
},
"passive": false,
"uploadOnSave": true,
"syncOption": {
"update": true,
"delete": true
},
"watcher": {
"files": "NOT/**/AccuTheme/**/no",
"autoUpload": true,
"autoDelete": false
},
"ignore": [
"**/*.code-workspace",
"**/.git/",
"**/.vscode/",
"**/gulpfile.js/",
"**/node_modules/",
"**/src/",
"**/README.md",
"**/*.LICENSE.txt",
".*",
"package.json",
"package-lock.json",
"real-favicon-generator.json",
"webpack.config.js",
"Thumbs.db",
".DS_Store"
],
"remotePath": "/",
"remoteExplorer": {
"filesExclude": [
"/_temp",
"/.well-known",
"/aspnet_client",
"/bin",
"*.map",
"Thumbs.db",
"*DS_Store",
"end-of-this-list"
]
}
}
{
"name": "PROJECT (DS####)<<<",
"host": "ds####.accuraty.net<<<",
"username": "projectftpABC<<<",
"password": "awesomePasswerd<<<",
"context": ".",
"protocol": "ftp",
"port": 21,
"secure": true,
"secureOptions": {
"rejectUnauthorized": false
},
"passive": false,
"uploadOnSave": true,
"syncOption": {
"update": true,
"delete": true
},
"watcher": {
"files": "NOT/**/AccuTheme/**/no",
"autoUpload": true,
"autoDelete": false
},
"ignore": [
"**/*.code-workspace",
"**/.git/",
"**/.vscode/",
"**/gulpfile.js/",
"**/node_modules/",
"**/src/",
"**/README.md",
"**/*.LICENSE.txt",
".*",
"package.json",
"package-lock.json",
"real-favicon-generator.json",
"webpack.config.js",
"Thumbs.db",
".DS_Store"
],
"remotePath": "/",
"remoteExplorer": {
"filesExclude": [
"/_temp",
"/.well-known",
"/aspnet_client",
"/bin",
"*.map",
"Thumbs.db",
"*DS_Store",
"end-of-this-list"
]
}
}
17 changes: 17 additions & 0 deletions AccuMap/_Google__Map--Embedded.cshtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
@inherits ToSic.Sxc.Dnn.RazorComponent

@{
String location = Content.Location.Replace(' ', '+');
}

<div @Edit.TagToolbar(Content)>
<iframe
id="GMapEmbd-@Content.EntityId"
width="100%"
height="450px"
loading="lazy"
allowfullscreen
src="https://www.google.com/maps/embed/v1/place?key=@App.Settings.APIKey
&q=@location">
</iframe>
</div>

0 comments on commit ba5c993

Please sign in to comment.