Skip to content

Latest commit

 

History

History
172 lines (122 loc) · 6.91 KB

README.md

File metadata and controls

172 lines (122 loc) · 6.91 KB

Prototype

Authors

  • [Kavya Kasaraneni] -- Front-end Developer
  • [Parampal Singh] -- Business Research and Backend Developer
  • [Fenil Minalkumar Parmar] -- Full Stack Developer
  • [Jenish Girish Patel] -- Integration and Deployment
  • [Neelansh Gulati] -- Scrum Master and Developer
  • [Aitzaz Qadir Khowaja] -- Designing and Documentation

Prerequisites

  • Node
  • Git
  • React
  • VSCode
  • Heroku
  • Express
  • Mongo DB

Installing

  • Login to the gitlab and clone the repository with https link

  • Now open the git bash terminal in your local system and clone the repository using the below command.

$ git clone https://git.cs.dal.ca/ngulati/technologyinnovation.git

  • The required repository is cloned into the system.

  • Now open the repository in IDE such as Visual Studio Code.

  • Give the following command to enter the repository for Front-end project.

$ cd .\frontend\

  • For installing the node modules and required dependencies use the below command. (Some of the dependencies not satisfied with current version of node / react, so because of that use '--force').
$ npm install --force

  • For starting and running the project use the below command.
$ npm run start

  • Give the following command to enter the repository for Backend project.
$ cd .\backend\

  • For installing the node modules and required dependencies use the below command.
$ npm install

  • For starting and running the project use the below command.
$ node index.js

You can see the app running in development mode and when you open http://localhost:3000 you can view the front-end in the browser.

Deployment

The developed application is deployed on Heroku using the steps below:

$ heroku login

  • We have connected Heroku repository to Gitlab repository. The pipeline is handling the deployment of heroku whenever there is new commit in Main branch.

  • Deployed the application

  • We can also Use the below commands to commit the code into git and push into heroku from git

$ heroku create -a investnow-frontend
$ heroku git:remote -a investnow-frontend
$ git remote rename heroku heroku-staging
$ git push heroku main

Built With

  • ReactJS - The JavaScript library used for building the front-end
  • npm - Package Management used
  • Gitlab - Used for versioning
  • Heroku - Used for deployement
  • React-Mui - Front-end UI
  • VS Code - Code editing

** **

Sources Used