A small PROFILE checking web application for users like mini linkedin, students can check each others profile.
https://student-katha.herokuapp.com/
Client : React, Material UI, Html5, Css3
Server : FastAPI (python3)
Databse : Mongodb atlas
Deployment : Heroku
Install my-project with npm
git clone https://github.com/monstermahi982/studentCorner.git
cd studentCorner
Start Backend server
cd backend
pip3 install -m venv venv
pip install -r requirement.txt
uvicorn main:app --reload
Start Frontend app
cd Frontend
npm install
npm start
https://localhost:3000/student/
To deploy this project on heroku run
heroku login
cd my-project/
git init
heroku git:remote -a project_name
git add .
git commit -am "monster world"
git push heroku master