- Mihaela Florea ([email protected])
- Leonid Goldberg ([email protected])
- Boyang Wang ([email protected])
- Jianyu Sun ([email protected])
- Frontend root:
- Remote (Azure): https://findaservicefrontend.azurewebsites.net/
- Local: https://localhost:3000/
- Install Node.js
- After you
git clonethe repository from the root folder run
npm install- The node_modules folder should appear in the root folder
- To start the backend server locally (for testing, the app will be connected to the remote one on Azure) run:
npm start- The server should automatically restart whenever you make changes to a file
- Check the server started by going to http://localhost:3000/
.
├── public # The compiled index.html page and any images
├── src # Source files
│ ├── pages # All the components for pages
│ ├── stores # JS classes used to store state that
│ │ # can be accessed from all pages as needed
│ ├── utils #
│ │ ├── components # General components used throughout the whole app
│ │ ├── fonts # Google fonts
│ │ ├── helpers # Constants and other useful reusable bits of JS
│ │ └── styles # Any styled components, the main css file and the theme
│ ├── App.js # Where the Routing between pages happens
│ └── index.js # Entrypoint of the app
├── .env # Declares environmental variables
├── .gitignore # Declares which files not to push to github
├── package.json # Declares Node.js scripts and libraries used
└── README.md