diff --git a/.gitignore b/.gitignore index 7de96a5..6eab949 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,114 @@ -web/node_modules/ -web/config/ \ No newline at end of file +# Created by https://www.toptal.com/developers/gitignore/api/node +# Edit at https://www.toptal.com/developers/gitignore?templates=node + +### Node ### +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env +.env.test + +# parcel-bundler cache (https://parceljs.org/) +.cache + +# Next.js build output +.next + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# End of https://www.toptal.com/developers/gitignore/api/node diff --git a/web/.vscode/launch.json b/.vscode/launch.json similarity index 100% rename from web/.vscode/launch.json rename to .vscode/launch.json diff --git a/web/app.js b/app.js similarity index 100% rename from web/app.js rename to app.js diff --git a/web/bin/www b/bin/www similarity index 100% rename from web/bin/www rename to bin/www diff --git a/web/config/creds.js b/config/creds.js similarity index 100% rename from web/config/creds.js rename to config/creds.js diff --git a/docker/docker-compose.yml b/docker-compose.yml similarity index 100% rename from docker/docker-compose.yml rename to docker-compose.yml diff --git a/web/dockerfile b/dockerfile similarity index 100% rename from web/dockerfile rename to dockerfile diff --git a/web/locales/el.json b/locales/el.json similarity index 100% rename from web/locales/el.json rename to locales/el.json diff --git a/web/locales/en.json b/locales/en.json similarity index 100% rename from web/locales/en.json rename to locales/en.json diff --git a/web/makefile b/makefile similarity index 100% rename from web/makefile rename to makefile diff --git a/web/package-lock.json b/package-lock.json similarity index 100% rename from web/package-lock.json rename to package-lock.json diff --git a/web/package.json b/package.json similarity index 100% rename from web/package.json rename to package.json diff --git a/web/public/assets/particlesjs-config.json b/public/assets/particlesjs-config.json similarity index 100% rename from web/public/assets/particlesjs-config.json rename to public/assets/particlesjs-config.json diff --git a/web/public/images/annie-spratt-QckxruozjRg-unsplash.jpg b/public/images/annie-spratt-QckxruozjRg-unsplash.jpg similarity index 100% rename from web/public/images/annie-spratt-QckxruozjRg-unsplash.jpg rename to public/images/annie-spratt-QckxruozjRg-unsplash.jpg diff --git a/web/public/images/thomas-jensen-ISG-rUel0Uw-unsplash.jpg b/public/images/thomas-jensen-ISG-rUel0Uw-unsplash.jpg similarity index 100% rename from web/public/images/thomas-jensen-ISG-rUel0Uw-unsplash.jpg rename to public/images/thomas-jensen-ISG-rUel0Uw-unsplash.jpg diff --git a/web/public/images/undraw_content_team_3epn.svg b/public/images/undraw_content_team_3epn.svg similarity index 100% rename from web/public/images/undraw_content_team_3epn.svg rename to public/images/undraw_content_team_3epn.svg diff --git a/web/public/images/undraw_server_q2pb.svg b/public/images/undraw_server_q2pb.svg similarity index 100% rename from web/public/images/undraw_server_q2pb.svg rename to public/images/undraw_server_q2pb.svg diff --git a/web/public/images/undraw_taking_notes_tjaf.svg b/public/images/undraw_taking_notes_tjaf.svg similarity index 100% rename from web/public/images/undraw_taking_notes_tjaf.svg rename to public/images/undraw_taking_notes_tjaf.svg diff --git a/web/public/images/undraw_version_control_9bpv.svg b/public/images/undraw_version_control_9bpv.svg similarity index 100% rename from web/public/images/undraw_version_control_9bpv.svg rename to public/images/undraw_version_control_9bpv.svg diff --git a/web/public/images/undraw_work_together_h63l.svg b/public/images/undraw_work_together_h63l.svg similarity index 100% rename from web/public/images/undraw_work_together_h63l.svg rename to public/images/undraw_work_together_h63l.svg diff --git a/web/public/images/yancy-min-842ofHC6MaI-unsplash.jpg b/public/images/yancy-min-842ofHC6MaI-unsplash.jpg similarity index 100% rename from web/public/images/yancy-min-842ofHC6MaI-unsplash.jpg rename to public/images/yancy-min-842ofHC6MaI-unsplash.jpg diff --git a/web/public/javascripts/bs-init.js b/public/javascripts/bs-init.js similarity index 100% rename from web/public/javascripts/bs-init.js rename to public/javascripts/bs-init.js diff --git a/web/public/javascripts/search.js b/public/javascripts/search.js similarity index 100% rename from web/public/javascripts/search.js rename to public/javascripts/search.js diff --git a/web/public/stylesheets/Footer-Dark.css b/public/stylesheets/Footer-Dark.css similarity index 100% rename from web/public/stylesheets/Footer-Dark.css rename to public/stylesheets/Footer-Dark.css diff --git a/web/public/stylesheets/Navigation-with-Button.css b/public/stylesheets/Navigation-with-Button.css similarity index 100% rename from web/public/stylesheets/Navigation-with-Button.css rename to public/stylesheets/Navigation-with-Button.css diff --git a/web/public/stylesheets/bootstrap.min.css b/public/stylesheets/bootstrap.min.css similarity index 100% rename from web/public/stylesheets/bootstrap.min.css rename to public/stylesheets/bootstrap.min.css diff --git a/web/public/stylesheets/styles.min.css b/public/stylesheets/styles.min.css similarity index 99% rename from web/public/stylesheets/styles.min.css rename to public/stylesheets/styles.min.css index 6b17991..4255bc1 100644 --- a/web/public/stylesheets/styles.min.css +++ b/public/stylesheets/styles.min.css @@ -1065,7 +1065,6 @@ span { #sidebar ul li.active>a, a[aria-expanded=true] { - color: #fff; background: #6d7fcc } diff --git a/web/routes/index.js b/routes/index.js similarity index 100% rename from web/routes/index.js rename to routes/index.js diff --git a/web/views/documentation.ejs b/views/documentation.ejs similarity index 100% rename from web/views/documentation.ejs rename to views/documentation.ejs diff --git a/web/views/error.ejs b/views/error.ejs similarity index 100% rename from web/views/error.ejs rename to views/error.ejs diff --git a/web/views/faq.ejs b/views/faq.ejs similarity index 100% rename from web/views/faq.ejs rename to views/faq.ejs diff --git a/web/views/index.ejs b/views/index.ejs similarity index 98% rename from web/views/index.ejs rename to views/index.ejs index 8577fee..342cdfc 100755 --- a/web/views/index.ejs +++ b/views/index.ejs @@ -1,6 +1,6 @@ <%- include("partials/header.ejs") %> -
+
@@ -66,7 +66,7 @@ href="https://api-client.swarmlab.io:8088">See more!
-
+
diff --git a/web/views/partials/footer.ejs b/views/partials/footer.ejs similarity index 100% rename from web/views/partials/footer.ejs rename to views/partials/footer.ejs diff --git a/web/views/partials/header.ejs b/views/partials/header.ejs similarity index 96% rename from web/views/partials/header.ejs rename to views/partials/header.ejs index 952ff19..8f7d518 100644 --- a/web/views/partials/header.ejs +++ b/views/partials/header.ejs @@ -20,7 +20,7 @@