Skip to content

Latest commit

 

History

History
64 lines (57 loc) · 1.42 KB

README.md

File metadata and controls

64 lines (57 loc) · 1.42 KB

Client side

Run the following command to install all the packages required to run the react application

npm install

Then run the following command to start

npm start

Client folder structure

The client side of the project has the following folder structure:

client:

  • public (folder)
    • images (folder)
      • barchart.png
      • bootstrap.png
      • brain.png
      • dash.png
      • edit.png
      • feature.png
      • flask.png
      • github.png
      • logo.ico
      • mongodb.png
      • no-video.png
      • nxgenCover.png
      • nxgenLogo.png
      • react.png
      • socoLogo.png
      • uniLogo.png
      • user.png
      • userF.png
      • userM.png
    • index.html (file)
    • manifest.json (file)
    • robots.txt (file)
  • src (folder)
    • components (folder)
      • AboutUs.js
      • Barchart.js
      • BrowseCourses.js
      • Course.js
      • CourseCard.js
      • FooterBar.js
      • LandingPage.js
      • LoginChoice.js
      • LoginForm.js
      • NavigationBar.js
      • Profile.js
      • Quiz.js
      • Registration.js
      • VideoPage.js
    • App.js (App file)
    • index.css (CSS file)
    • index.js (file)
    • RouterPage.js (Router component of the application)
    • serviceWorker.js (file)
  • .gitignore (git ignore file)
  • package.json (package file)
  • package-lock.json (file)
  • README.md (client readme file)