From 9a0c383e0b01724b1835d11484f34fe037bd8489 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 10 May 2022 20:05:43 +0430 Subject: [PATCH] Directory allocation --- .gitignore | 52 +++++++++--------- webmarker/LICENSE => LICENSE | 0 {webmarker_backend => api}/package-lock.json | 0 {webmarker_backend => api}/package.json | 0 {webmarker_backend => api}/server.js | 0 .../package-lock.json => package-lock.json | 0 webmarker/package.json => package.json | 0 {webmarker/public => public}/favicon.ico | Bin {webmarker/public => public}/index.html | 0 {webmarker/public => public}/logo192.png | Bin {webmarker/public => public}/logo512.png | Bin {webmarker/public => public}/manifest.json | 0 {webmarker/public => public}/robots.txt | 0 {webmarker/src => src}/App.js | 0 {webmarker/src => src}/componets/AddModal.js | 0 {webmarker/src => src}/componets/List.js | 0 {webmarker/src => src}/index.js | 0 {webmarker/src => src}/styles/App.css | 0 {webmarker/src => src}/styles/List.css | 0 {webmarker/src => src}/styles/Modal.css | 0 {webmarker/src => src}/styles/index.css | 0 21 files changed, 26 insertions(+), 26 deletions(-) rename webmarker/LICENSE => LICENSE (100%) rename {webmarker_backend => api}/package-lock.json (100%) rename {webmarker_backend => api}/package.json (100%) rename {webmarker_backend => api}/server.js (100%) rename webmarker/package-lock.json => package-lock.json (100%) rename webmarker/package.json => package.json (100%) rename {webmarker/public => public}/favicon.ico (100%) rename {webmarker/public => public}/index.html (100%) rename {webmarker/public => public}/logo192.png (100%) rename {webmarker/public => public}/logo512.png (100%) rename {webmarker/public => public}/manifest.json (100%) rename {webmarker/public => public}/robots.txt (100%) rename {webmarker/src => src}/App.js (100%) rename {webmarker/src => src}/componets/AddModal.js (100%) rename {webmarker/src => src}/componets/List.js (100%) rename {webmarker/src => src}/index.js (100%) rename {webmarker/src => src}/styles/App.css (100%) rename {webmarker/src => src}/styles/List.css (100%) rename {webmarker/src => src}/styles/Modal.css (100%) rename {webmarker/src => src}/styles/index.css (100%) diff --git a/.gitignore b/.gitignore index aebd1a1..e351ff4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,27 +1,27 @@ -webmarker/node_modules -webmarker/..pnp -webmarker/.pnp.js -webmarker/coverage -webmarker/build -webmarker/.DS_Store -webmarker/.env.local -webmarker/.env.development.local -webmarker/.env.test.local -webmarker/.env.production.local -webmarker/npm-debug.log* -webmarker/yarn-debug.log* -webmarker/yarn-error.log* +node_modules +..pnp +.pnp.js +coverage +build +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local +npm-debug.log* +yarn-debug.log* +yarn-error.log* -webmarker_backend/node_modules -webmarker_backend/..pnp -webmarker_backend/.pnp.js -webmarker_backend/coverage -webmarker_backend/build -webmarker_backend/.DS_Store -webmarker_backend/.env.local -webmarker_backend/.env.development.local -webmarker_backend/.env.test.local -webmarker_backend/.env.production.local -webmarker_backend/npm-debug.log* -webmarker_backend/yarn-debug.log* -webmarker_backend/yarn-error.log* \ No newline at end of file +api/node_modules +api/..pnp +api/.pnp.js +api/coverage +api/build +api/.DS_Store +api/.env.local +api/.env.development.local +api/.env.test.local +api/.env.production.local +api/npm-debug.log* +api/yarn-debug.log* +api/yarn-error.log* \ No newline at end of file diff --git a/webmarker/LICENSE b/LICENSE similarity index 100% rename from webmarker/LICENSE rename to LICENSE diff --git a/webmarker_backend/package-lock.json b/api/package-lock.json similarity index 100% rename from webmarker_backend/package-lock.json rename to api/package-lock.json diff --git a/webmarker_backend/package.json b/api/package.json similarity index 100% rename from webmarker_backend/package.json rename to api/package.json diff --git a/webmarker_backend/server.js b/api/server.js similarity index 100% rename from webmarker_backend/server.js rename to api/server.js diff --git a/webmarker/package-lock.json b/package-lock.json similarity index 100% rename from webmarker/package-lock.json rename to package-lock.json diff --git a/webmarker/package.json b/package.json similarity index 100% rename from webmarker/package.json rename to package.json diff --git a/webmarker/public/favicon.ico b/public/favicon.ico similarity index 100% rename from webmarker/public/favicon.ico rename to public/favicon.ico diff --git a/webmarker/public/index.html b/public/index.html similarity index 100% rename from webmarker/public/index.html rename to public/index.html diff --git a/webmarker/public/logo192.png b/public/logo192.png similarity index 100% rename from webmarker/public/logo192.png rename to public/logo192.png diff --git a/webmarker/public/logo512.png b/public/logo512.png similarity index 100% rename from webmarker/public/logo512.png rename to public/logo512.png diff --git a/webmarker/public/manifest.json b/public/manifest.json similarity index 100% rename from webmarker/public/manifest.json rename to public/manifest.json diff --git a/webmarker/public/robots.txt b/public/robots.txt similarity index 100% rename from webmarker/public/robots.txt rename to public/robots.txt diff --git a/webmarker/src/App.js b/src/App.js similarity index 100% rename from webmarker/src/App.js rename to src/App.js diff --git a/webmarker/src/componets/AddModal.js b/src/componets/AddModal.js similarity index 100% rename from webmarker/src/componets/AddModal.js rename to src/componets/AddModal.js diff --git a/webmarker/src/componets/List.js b/src/componets/List.js similarity index 100% rename from webmarker/src/componets/List.js rename to src/componets/List.js diff --git a/webmarker/src/index.js b/src/index.js similarity index 100% rename from webmarker/src/index.js rename to src/index.js diff --git a/webmarker/src/styles/App.css b/src/styles/App.css similarity index 100% rename from webmarker/src/styles/App.css rename to src/styles/App.css diff --git a/webmarker/src/styles/List.css b/src/styles/List.css similarity index 100% rename from webmarker/src/styles/List.css rename to src/styles/List.css diff --git a/webmarker/src/styles/Modal.css b/src/styles/Modal.css similarity index 100% rename from webmarker/src/styles/Modal.css rename to src/styles/Modal.css diff --git a/webmarker/src/styles/index.css b/src/styles/index.css similarity index 100% rename from webmarker/src/styles/index.css rename to src/styles/index.css