This repository is for the projects completed during the Full Stack Nanodegree Program at Udacity. This README serves as an overveiw and a table of contents for the projects completed.
-
Aim of the project was to build a full-stack Web App with Flask and Boostrap which enables Venues & Artists to list themselves and arrange Shows together.
Used tech stack:
SQLAlchemy
as ORM library of choicePostgreSQL
as databasePython3
andFlask
for server language and frameworkFlask-Migrate
for creating and running schema migrations- Frontend: HTML, CSS, and Javascript with Bootstrap 3 (mainly provided by Udacity Team)
Applied concepts:
- How to use Git Bash & Github as version control tool
- Configure local database and connect it to a web application
- Create Model Schemas with columns and relationships (1:1, 1:n and N:N)
- Use SQLAlchemy ORM with PostgreSQL to query, insert, edit & delete Data
- Use WTForms to encapsulate input forms in seperate file & to allow for custom validations
- Use Boostrap as a simple to use Front End Libary and Ajax to fetch flask routes
- Create SQL-like Queries, but without any SQL syntax, only using SQLAlchemy ORM
- How to clearly structurize a larger web application in different files & folders
-
Using 'Flask' and 'React', created a Full-Stack App to manage questions for different categories & develop an API to power the Quiz Gameplay.
Used tech stack:
- React Components as frontend (provided by Udacity Team)
- Python3 and Flask for server language and API development
cors
to handle access to the APIunittest
for automated testing of APIscurl
to get responses from APIREADME.md
to document project setup & API endpoints
Applied concepts:
- using best-practice
PEP8-style
to design and structur code test-driven-development (TDD)
to rapidly create highly tested & maintainable endpoints.- directly test and make response to any endpoint out there with
curl
. - implement
errorhandler
to format & design appropiate error messages to client - becoming aware of the importance of extensive project documentation & testing.
-
Using 'Flask' and 'Auth0', created a Full-Stack App to let Users login to Site & make actions according to their Role & Permission Sets.
Used tech stack:
Python3
&Flask
for server language and API developmentSQLAlchemy
as ORM /Sqlite
as databaseIonic
to serve and build the frontend (provided by Udacity Team)Auth0
as external Authorization Service & permission creationjose
JavaScript Object Signing and Encryption for JWTs. Useful for encoding, decoding, and verifying JWTs.postman
to automatize endpoint testing & verification of correct Authorization behaviour.
-
Deployed a Flask API to a Kubernetes cluster using Docker, AWS EKS, CodePipeline, and CodeBuild.
(Application has been teared down after successfull review to avoid incurring additional costs)
Used tech stack:
Docker
for app containerization & image creation to ensure environment consistency across development and production serverAWS EKS
&Kubernetes
as container orchestration service to allow for horizontal scalingaswscli
to interact with AWS Cloud Servicesekscli
for EKS cluster creationkubectl
to interact with kubernetes cluster & podsCodePipeline
for Continuous Delivery (CD) & to watch Github Repo for changesCodeBuild
for Continuous Integration (CI), together withpytest
for automated testing before deployment
This is the last project of the Udacity-Full-Stack-Nanodegree
Course.
It covers following technical topics in 1 app:
- Database modeling with
postgres
&sqlalchemy
(seemodels.py
) - API to performance CRUD Operations on database with
Flask
(seeapp.py
) - Automated testing with
Unittest
(seetest_app
) - Authorization & Role based Authentification with
Auth0
(seeauth.py
) - Deployment on
Heroku
(seesetup.sh
)