Udagram is a simple cloud application developed alongside the Udacity Cloud Developer Nanodegree. It allows users to register and log into a web client, post photos to the feed, and process photos using an image filtering microservice.
The project is split into three parts:
- The Simple Frontend A basic Ionic client web application which consumes the RestAPI Backend.
- The RestAPI Feed Backend, a Node-Express feed microservice.
- The RestAPI User Backend, a Node-Express user microservice.
tip: this frontend is designed to work with the RestAPI backends). It is recommended you stand up the backend first, test using Postman, and then the frontend should integrate.
This project depends on Nodejs and Node Package Manager (NPM). Before continuing, you must download and install Node (NPM is included) from https://nodejs.com/en/download.
The Ionic Command Line Interface is required to serve and build the frontend. Instructions for installing the CLI can be found in the Ionic Framework Docs.
This project uses NPM to manage software dependencies. NPM Relies on the package.json file located at the root directory of a Node.js project.
- Clone this repository
- Open your terminal
- Run npm install for the frontend and backend projects.
tip: npm i is shorthand for npm install
- Example:
cd ./udacity-c3-restapi-feed
npm install
Ionic uses enviornment files located in ./src/enviornments/enviornment.*.ts
to load configuration variables at runtime. By default environment.ts
is used for development and enviornment.prod.ts
is used for produciton. The apiHost
variable should be set to your server url either locally or in the cloud.
Ionic CLI provides an easy to use development server to run and autoreload the frontend. This allows you to make quick changes and see them in real time in your browser. To run the development server, open terminal and run:
ionic serve
Ionic CLI can build the frontend into static HTML/CSS/JavaScript files. These files can be uploaded to a host to be consumed by users on the web. Build artifacts are located in ./www
. To build from source, open terminal and run:
ionic build
You'll need to install docker https://docs.docker.com/install/. Open a new terminal within the udacity-c3-deployment/docker directory and run:
- Build the images:
docker-compose -f docker-compose-build.yaml build --parallel
- Push the images:
docker-compose -f docker-compose-build.yaml push
- Run the container:
docker-compose up
Docker Desktop includes a standalone Kubernetes server and client, as well as Docker CLI integration. See Docker Desktop for Windows or Mac > Getting started to enable Kubernetes.
- Navigate to the udacity-c3-deployment/k8s directory
- Set AWS credentials and configs
- Run:
kubectl apply -f ./config
kubectl apply -f ./service
kubectl apply -f ./deployment
- Forward local ports for the reverseproxy and frontend services
kubectl port-forward service/reverseproxy 8080:8080
kubectl port-forward service/frontend 8100:8100