http://angular-frontend-bucket.s3-website-us-east-1.amazonaws.com/
- clone the repo
git clone https://github.com/Farid-Mnf/udagram-app-circleci.git
- get into main project directory
cd udagram
- run main package.json scripts:
- install dependencies:
npm run frontend:install
,npm run backend:install
- deploy API and UI to cloud:
npm run frontend:deploy
,npm run backend:deploy
- run test:
npm run frontend:test
- create RDS instance to connect it to API sequilize database endpoint
- create another instance on elastic beanstalk to host the NodeJs API and configure environment variables on elastic beanstalk console
- create S3 bucket to host Frontend Angular application and enable website hosting and public access
- Infrastructure, dependencies, and pipeline process documentation: Documentation
- Clone this repo locally into the location of your choice.
- Move the content of the udagram folder at the root of the repository as this will become the main content of the project.
- Open a terminal and navigate to the root of the repo
- follow the instructions in the installation step
The project can run but is missing some information to connect to the database and storage service. These will be setup during the course of the project
- Node v14.15.1 (LTS) or more recent. While older versions can work it is advisable to keep node to latest LTS version
- npm 6.14.8 (LTS) or more recent, Yarn can work but was not tested for this project
- AWS CLI v2, v1 can work but was not tested for this project
- A RDS database running Postgres.
- A S3 bucket for hosting uploaded pictures.
Provision the necessary AWS services needed for running the application:
- In AWS, provision a publicly available RDS database running Postgres.
- In AWS, provision a s3 bucket for hosting the uploaded files.
- Export the ENV variables needed or use a package like dotnev/.
- From the root of the repo, navigate udagram-api folder
cd starter/udagram-api
to install the node_modulesnpm install
. After installation is done start the api in dev mode withnpm run dev
. - Without closing the terminal in step 1, navigate to the udagram-frontend
cd starter/udagram-frontend
to intall the node_modulesnpm install
. After installation is done start the api in dev mode withnpm run start
.
This project contains two different test suite: unit tests and End-To-End tests(e2e). Follow these steps to run the tests.
cd starter/udagram-frontend
npm run test
npm run e2e
There are no Unit test on the back-end
Unit tests are using the Jasmine Framework.
The e2e tests are using Protractor and Jasmine.