Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jakazzy/image-filter-app
https://github.com/jakazzy/image-filter-app
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jakazzy/image-filter-app
- Owner: jakazzy
- Created: 2020-02-01T08:19:16.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T22:50:30.000Z (almost 2 years ago)
- Last Synced: 2024-10-20T06:35:12.421Z (19 days ago)
- Language: TypeScript
- Size: 336 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Udagram Image Filtering Microservice
Udagram is a simple cloud application developed alongside the Udacity Cloud Engineering 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:
1. [The Simple Frontend](https://github.com/udacity/cloud-developer/tree/master/course-02/exercises/udacity-c2-frontend)
A basic Ionic client web application which consumes the RestAPI Backend. [Covered in the course]
2. [The RestAPI Backend](https://github.com/udacity/cloud-developer/tree/master/course-02/exercises/udacity-c2-restapi), a Node-Express server which can be deployed to a cloud service. [Covered in the course]
3. [The Image Filtering Microservice](https://github.com/udacity/cloud-developer/tree/master/course-02/project/image-filter-starter-code), the final project for the course. It is a Node-Express application which runs a simple script to process images. [Your assignment]## Tasks
### Setup Node Environment
Ccreate a new node server. Open a new terminal within the project directory and run:
1. Install dependencies: `npm i`
2. run the development server with `npm run dev`