summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-07-01 18:27:24 -0500
committerToby Vincent <tobyv13@gmail.com>2021-07-01 18:27:24 -0500
commitbf7a5ea05960fe3e7c1fbf33cb7e0404604d428e (patch)
tree14bb92a036bcbff77d79d0882592d8543adc5210
parentbf7759bedfe1402fab9f64b8a46bb22c15a7c6ba (diff)
split out syncthing into submoduleHEADmain
-rw-r--r--.gitattributes3
-rw-r--r--.gitignore3
-rwxr-xr-x.vscode/extensions.json6
-rwxr-xr-x.vscode/settings.json14
4 files changed, 26 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..5dc46e6
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,3 @@
+* text=auto eol=lf
+*.{cmd,[cC][mM][dD]} text eol=crlf
+*.{bat,[bB][aA][tT]} text eol=crlf \ No newline at end of file
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..ca44d2e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+*/data
+*/secrets
+*/docker-compose.override.y*ml \ No newline at end of file
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
new file mode 100755
index 0000000..aeab443
--- /dev/null
+++ b/.vscode/extensions.json
@@ -0,0 +1,6 @@
+{
+ "recommendations": [
+ "redhat.vscode-yaml",
+ "ms-azuretools.vscode-docker"
+ ]
+} \ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100755
index 0000000..71f0ab4
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,14 @@
+{
+ "files.associations": {
+ "**/nginx/*-confs*/*": "NGINX"
+ },
+ "files.autoSave": "off",
+ // "docker.networks.showBuiltInNetworks": false,
+ "docker.containers.label": "ContainerName",
+ "docker.containers.description": [
+ "Status"
+ ],
+ "[dockerfile]": {
+ "editor.defaultFormatter": "ms-azuretools.vscode-docker"
+ },
+} \ No newline at end of file