├── README.md ├── api ├── Dockerfile ├── db_setup.py ├── main.py ├── model.py ├── requirements.txt └── schema.py ├── docker-compose.yaml └── web-app ├── Dockerfile ├── app.py ├── requirements.txt └── templates ├── form.html └── students.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATOUIYakoub/Cloud-Computing-Practical/HEAD/README.md -------------------------------------------------------------------------------- /api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATOUIYakoub/Cloud-Computing-Practical/HEAD/api/Dockerfile -------------------------------------------------------------------------------- /api/db_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATOUIYakoub/Cloud-Computing-Practical/HEAD/api/db_setup.py -------------------------------------------------------------------------------- /api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATOUIYakoub/Cloud-Computing-Practical/HEAD/api/main.py -------------------------------------------------------------------------------- /api/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATOUIYakoub/Cloud-Computing-Practical/HEAD/api/model.py -------------------------------------------------------------------------------- /api/requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi[standard] 2 | SQLAlchemy 3 | psycopg2-binary 4 | requests -------------------------------------------------------------------------------- /api/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATOUIYakoub/Cloud-Computing-Practical/HEAD/api/schema.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATOUIYakoub/Cloud-Computing-Practical/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /web-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATOUIYakoub/Cloud-Computing-Practical/HEAD/web-app/Dockerfile -------------------------------------------------------------------------------- /web-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATOUIYakoub/Cloud-Computing-Practical/HEAD/web-app/app.py -------------------------------------------------------------------------------- /web-app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==2.3.2 2 | requests -------------------------------------------------------------------------------- /web-app/templates/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATOUIYakoub/Cloud-Computing-Practical/HEAD/web-app/templates/form.html -------------------------------------------------------------------------------- /web-app/templates/students.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATOUIYakoub/Cloud-Computing-Practical/HEAD/web-app/templates/students.html --------------------------------------------------------------------------------