From 343a8d3766aa9d126c6d7d41238316d7b5b2863c Mon Sep 17 00:00:00 2001 From: "Peter J. Holzer" Date: Sat, 26 Feb 2022 22:40:56 +0100 Subject: [PATCH] Move react implementation to subdirectory --- {backend => react/backend}/.gitignore | 0 {backend => react/backend}/main.py | 0 {backend => react/backend}/requirements.txt | 0 {frontend => react/frontend}/.gitignore | 0 {frontend => react/frontend}/README.md | 0 {frontend => react/frontend}/package-lock.json | 0 {frontend => react/frontend}/package.json | 0 {frontend => react/frontend}/public/favicon.ico | Bin {frontend => react/frontend}/public/guitar.png | Bin {frontend => react/frontend}/public/index.html | 0 {frontend => react/frontend}/public/logo192.png | Bin {frontend => react/frontend}/public/logo512.png | Bin {frontend => react/frontend}/public/manifest.json | 0 {frontend => react/frontend}/public/robots.txt | 0 {frontend => react/frontend}/src/App.css | 0 {frontend => react/frontend}/src/App.js | 0 {frontend => react/frontend}/src/App.test.js | 0 {frontend => react/frontend}/src/CountryInput.js | 0 {frontend => react/frontend}/src/Intro.js | 0 .../frontend}/src/MontserratAlternates-Light.ttf | Bin .../src/MontserratAlternates-LightItalic.ttf | Bin .../frontend}/src/MontserratAlternates-Medium.ttf | Bin .../src/MontserratAlternates-MediumItalic.ttf | Bin .../frontend}/src/MontserratAlternates-Regular.ttf | Bin .../frontend}/src/Philosopher-Bold.ttf | Bin .../frontend}/src/Philosopher-BoldItalic.ttf | Bin .../frontend}/src/Philosopher-Italic.ttf | Bin .../frontend}/src/Philosopher-Regular.ttf | Bin {frontend => react/frontend}/src/Questionaire.js | 0 {frontend => react/frontend}/src/Stats.js | 0 {frontend => react/frontend}/src/guitar.png | Bin {frontend => react/frontend}/src/index.css | 0 {frontend => react/frontend}/src/index.js | 0 {frontend => react/frontend}/src/logo.svg | 0 {frontend => react/frontend}/src/reportWebVitals.js | 0 {frontend => react/frontend}/src/setupTests.js | 0 36 files changed, 0 insertions(+), 0 deletions(-) rename {backend => react/backend}/.gitignore (100%) rename {backend => react/backend}/main.py (100%) rename {backend => react/backend}/requirements.txt (100%) rename {frontend => react/frontend}/.gitignore (100%) rename {frontend => react/frontend}/README.md (100%) rename {frontend => react/frontend}/package-lock.json (100%) rename {frontend => react/frontend}/package.json (100%) rename {frontend => react/frontend}/public/favicon.ico (100%) rename {frontend => react/frontend}/public/guitar.png (100%) rename {frontend => react/frontend}/public/index.html (100%) rename {frontend => react/frontend}/public/logo192.png (100%) rename {frontend => react/frontend}/public/logo512.png (100%) rename {frontend => react/frontend}/public/manifest.json (100%) rename {frontend => react/frontend}/public/robots.txt (100%) rename {frontend => react/frontend}/src/App.css (100%) rename {frontend => react/frontend}/src/App.js (100%) rename {frontend => react/frontend}/src/App.test.js (100%) rename {frontend => react/frontend}/src/CountryInput.js (100%) rename {frontend => react/frontend}/src/Intro.js (100%) rename {frontend => react/frontend}/src/MontserratAlternates-Light.ttf (100%) rename {frontend => react/frontend}/src/MontserratAlternates-LightItalic.ttf (100%) rename {frontend => react/frontend}/src/MontserratAlternates-Medium.ttf (100%) rename {frontend => react/frontend}/src/MontserratAlternates-MediumItalic.ttf (100%) rename {frontend => react/frontend}/src/MontserratAlternates-Regular.ttf (100%) rename {frontend => react/frontend}/src/Philosopher-Bold.ttf (100%) rename {frontend => react/frontend}/src/Philosopher-BoldItalic.ttf (100%) rename {frontend => react/frontend}/src/Philosopher-Italic.ttf (100%) rename {frontend => react/frontend}/src/Philosopher-Regular.ttf (100%) rename {frontend => react/frontend}/src/Questionaire.js (100%) rename {frontend => react/frontend}/src/Stats.js (100%) rename {frontend => react/frontend}/src/guitar.png (100%) rename {frontend => react/frontend}/src/index.css (100%) rename {frontend => react/frontend}/src/index.js (100%) rename {frontend => react/frontend}/src/logo.svg (100%) rename {frontend => react/frontend}/src/reportWebVitals.js (100%) rename {frontend => react/frontend}/src/setupTests.js (100%) diff --git a/backend/.gitignore b/react/backend/.gitignore similarity index 100% rename from backend/.gitignore rename to react/backend/.gitignore diff --git a/backend/main.py b/react/backend/main.py similarity index 100% rename from backend/main.py rename to react/backend/main.py diff --git a/backend/requirements.txt b/react/backend/requirements.txt similarity index 100% rename from backend/requirements.txt rename to react/backend/requirements.txt diff --git a/frontend/.gitignore b/react/frontend/.gitignore similarity index 100% rename from frontend/.gitignore rename to react/frontend/.gitignore diff --git a/frontend/README.md b/react/frontend/README.md similarity index 100% rename from frontend/README.md rename to react/frontend/README.md diff --git a/frontend/package-lock.json b/react/frontend/package-lock.json similarity index 100% rename from frontend/package-lock.json rename to react/frontend/package-lock.json diff --git a/frontend/package.json b/react/frontend/package.json similarity index 100% rename from frontend/package.json rename to react/frontend/package.json diff --git a/frontend/public/favicon.ico b/react/frontend/public/favicon.ico similarity index 100% rename from frontend/public/favicon.ico rename to react/frontend/public/favicon.ico diff --git a/frontend/public/guitar.png b/react/frontend/public/guitar.png similarity index 100% rename from frontend/public/guitar.png rename to react/frontend/public/guitar.png diff --git a/frontend/public/index.html b/react/frontend/public/index.html similarity index 100% rename from frontend/public/index.html rename to react/frontend/public/index.html diff --git a/frontend/public/logo192.png b/react/frontend/public/logo192.png similarity index 100% rename from frontend/public/logo192.png rename to react/frontend/public/logo192.png diff --git a/frontend/public/logo512.png b/react/frontend/public/logo512.png similarity index 100% rename from frontend/public/logo512.png rename to react/frontend/public/logo512.png diff --git a/frontend/public/manifest.json b/react/frontend/public/manifest.json similarity index 100% rename from frontend/public/manifest.json rename to react/frontend/public/manifest.json diff --git a/frontend/public/robots.txt b/react/frontend/public/robots.txt similarity index 100% rename from frontend/public/robots.txt rename to react/frontend/public/robots.txt diff --git a/frontend/src/App.css b/react/frontend/src/App.css similarity index 100% rename from frontend/src/App.css rename to react/frontend/src/App.css diff --git a/frontend/src/App.js b/react/frontend/src/App.js similarity index 100% rename from frontend/src/App.js rename to react/frontend/src/App.js diff --git a/frontend/src/App.test.js b/react/frontend/src/App.test.js similarity index 100% rename from frontend/src/App.test.js rename to react/frontend/src/App.test.js diff --git a/frontend/src/CountryInput.js b/react/frontend/src/CountryInput.js similarity index 100% rename from frontend/src/CountryInput.js rename to react/frontend/src/CountryInput.js diff --git a/frontend/src/Intro.js b/react/frontend/src/Intro.js similarity index 100% rename from frontend/src/Intro.js rename to react/frontend/src/Intro.js diff --git a/frontend/src/MontserratAlternates-Light.ttf b/react/frontend/src/MontserratAlternates-Light.ttf similarity index 100% rename from frontend/src/MontserratAlternates-Light.ttf rename to react/frontend/src/MontserratAlternates-Light.ttf diff --git a/frontend/src/MontserratAlternates-LightItalic.ttf b/react/frontend/src/MontserratAlternates-LightItalic.ttf similarity index 100% rename from frontend/src/MontserratAlternates-LightItalic.ttf rename to react/frontend/src/MontserratAlternates-LightItalic.ttf diff --git a/frontend/src/MontserratAlternates-Medium.ttf b/react/frontend/src/MontserratAlternates-Medium.ttf similarity index 100% rename from frontend/src/MontserratAlternates-Medium.ttf rename to react/frontend/src/MontserratAlternates-Medium.ttf diff --git a/frontend/src/MontserratAlternates-MediumItalic.ttf b/react/frontend/src/MontserratAlternates-MediumItalic.ttf similarity index 100% rename from frontend/src/MontserratAlternates-MediumItalic.ttf rename to react/frontend/src/MontserratAlternates-MediumItalic.ttf diff --git a/frontend/src/MontserratAlternates-Regular.ttf b/react/frontend/src/MontserratAlternates-Regular.ttf similarity index 100% rename from frontend/src/MontserratAlternates-Regular.ttf rename to react/frontend/src/MontserratAlternates-Regular.ttf diff --git a/frontend/src/Philosopher-Bold.ttf b/react/frontend/src/Philosopher-Bold.ttf similarity index 100% rename from frontend/src/Philosopher-Bold.ttf rename to react/frontend/src/Philosopher-Bold.ttf diff --git a/frontend/src/Philosopher-BoldItalic.ttf b/react/frontend/src/Philosopher-BoldItalic.ttf similarity index 100% rename from frontend/src/Philosopher-BoldItalic.ttf rename to react/frontend/src/Philosopher-BoldItalic.ttf diff --git a/frontend/src/Philosopher-Italic.ttf b/react/frontend/src/Philosopher-Italic.ttf similarity index 100% rename from frontend/src/Philosopher-Italic.ttf rename to react/frontend/src/Philosopher-Italic.ttf diff --git a/frontend/src/Philosopher-Regular.ttf b/react/frontend/src/Philosopher-Regular.ttf similarity index 100% rename from frontend/src/Philosopher-Regular.ttf rename to react/frontend/src/Philosopher-Regular.ttf diff --git a/frontend/src/Questionaire.js b/react/frontend/src/Questionaire.js similarity index 100% rename from frontend/src/Questionaire.js rename to react/frontend/src/Questionaire.js diff --git a/frontend/src/Stats.js b/react/frontend/src/Stats.js similarity index 100% rename from frontend/src/Stats.js rename to react/frontend/src/Stats.js diff --git a/frontend/src/guitar.png b/react/frontend/src/guitar.png similarity index 100% rename from frontend/src/guitar.png rename to react/frontend/src/guitar.png diff --git a/frontend/src/index.css b/react/frontend/src/index.css similarity index 100% rename from frontend/src/index.css rename to react/frontend/src/index.css diff --git a/frontend/src/index.js b/react/frontend/src/index.js similarity index 100% rename from frontend/src/index.js rename to react/frontend/src/index.js diff --git a/frontend/src/logo.svg b/react/frontend/src/logo.svg similarity index 100% rename from frontend/src/logo.svg rename to react/frontend/src/logo.svg diff --git a/frontend/src/reportWebVitals.js b/react/frontend/src/reportWebVitals.js similarity index 100% rename from frontend/src/reportWebVitals.js rename to react/frontend/src/reportWebVitals.js diff --git a/frontend/src/setupTests.js b/react/frontend/src/setupTests.js similarity index 100% rename from frontend/src/setupTests.js rename to react/frontend/src/setupTests.js