Skip to content

Latest commit

 

History

History
73 lines (54 loc) · 1.51 KB

README.md

File metadata and controls

73 lines (54 loc) · 1.51 KB

Overview

This respository contains the code for the Omicron Life website. Our website is made with Typescript, HTML, and CSS using the React framework and is hosted on AWS Cloudfront. The purpose of the website is to display our depression detection algorithm in a user-friendly manner. The website also addresses the development process, privacy concerns, ways to contribute to our project, and much more.

Running locally

Prerequisites

Clone the repository

git clone https://github.com/Depression-Detection/frontend.git
cd frontend

Install dependencies

yarn install
yarn add @sentry/react
yarn add react-router-dom
yarn add react-transition-group
yarn add react-helmet-async
yarn add react-icons

Run the development server

yarn start

You can access the website at http://localhost:3000.

Making Changes

Steps

  1. Switch to a new branch
git checkout -b new-branch
  1. Make any changes you want to make
  • To add specific files:
git add <files>
  • To add all changes:
git add -A
  1. Commit your changes to the Branch
git commit -m "message"
  1. Push changes to remote respository (your frontend file)
git push --set-upstream origin new-branch
  1. Switch the to master branch and push to GitHub
git push origin new-branch
  1. Finally open the provided link and create merge request