├── .env.example ├── .github └── workflows │ └── build.yml ├── .gitignore ├── README.md ├── backend ├── .env.example ├── .gitignore ├── Dockerfile ├── app │ ├── __init__.py │ ├── database.py │ ├── main.py │ ├── models.py │ └── schemas.py ├── dataset.csv ├── load.py └── requirements.txt ├── docker-compose.yml ├── docs └── frontend01.png ├── frontend ├── .dockerignore ├── .env.example ├── .gitignore ├── Dockerfile ├── config.js ├── entrypoint.sh ├── nginx.conf ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js └── k8s ├── backend.yml ├── db.yml ├── frontend.yml ├── namespace.yml └── secrets.yml /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/README.md -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/backend/app/__init__.py -------------------------------------------------------------------------------- /backend/app/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/backend/app/database.py -------------------------------------------------------------------------------- /backend/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/backend/app/main.py -------------------------------------------------------------------------------- /backend/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/backend/app/models.py -------------------------------------------------------------------------------- /backend/app/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/backend/app/schemas.py -------------------------------------------------------------------------------- /backend/dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/backend/dataset.csv -------------------------------------------------------------------------------- /backend/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/backend/load.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/frontend01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/docs/frontend01.png -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/.dockerignore -------------------------------------------------------------------------------- /frontend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/.env.example -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/config.js -------------------------------------------------------------------------------- /frontend/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/entrypoint.sh -------------------------------------------------------------------------------- /frontend/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/nginx.conf -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/src/App.test.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/src/logo.svg -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/src/reportWebVitals.js -------------------------------------------------------------------------------- /frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/frontend/src/setupTests.js -------------------------------------------------------------------------------- /k8s/backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/k8s/backend.yml -------------------------------------------------------------------------------- /k8s/db.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/k8s/db.yml -------------------------------------------------------------------------------- /k8s/frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/k8s/frontend.yml -------------------------------------------------------------------------------- /k8s/namespace.yml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: etoapp -------------------------------------------------------------------------------- /k8s/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoosamoe/eto-app/HEAD/k8s/secrets.yml --------------------------------------------------------------------------------