Find Your Roommate is a platform for students and for property owners where students can register and find potential roommates based on Age, Location and Common Interests. After the registration, the users can see potential roommates and see percentage of their match, as well as all other common and general information. For property owners they can register and add their properties so users can search and request a place.
UI Design made in Figma: https://www.figma.com/file/0oxBQw4dhKBsMcpz4szBiP/FindYourRoomate-team-library?node-id=312%3A2
Front-end:
- React.JS
- Redux
- React Query
- Tailwind Back-end:
- Laravel
- PostgreSQL
- Node.js 8+
- Clone the project from github. Change "myproject" to your project name.
git clone https://github.com/maitraysuthar/react-redux-saga-boilerplate.git ./myproject
- Download repository
- Uncompress to your desired directory
cd myproject
npm install
- You will find a file named
.env.example
on root directory of project. - Create a new file by copying and pasting the file and then renaming it to just
.env
cp .env.example .env
- The file
.env
is already ignored, so you never commit your credentials. - Change the values of the file to your environment. Helpful comments added to
.env.example
file to understand the constants. - As well , the Back-end application should be running in the background, locally or hosted somewhere.
npm start
All the modules of the project will be in /src/modules/
folder, If you need to add more modules to the project just create a new folder in the same folder.
- Component file (
index.jsx
) - Actions file (
actions.js
) - Reducer file (
reducer.js
) - Saga file (
saga.js
) - Style file (
[module].css
) - Sub module folder, if any.
Module's root module folder is /src/modules/app/
it contains main Routes file (routes.js
), Reducer file (mainReducer.js
) and Saga file (mainSaga.js
). You will need to add your every component,reducer & saga to make your module work.
This project is open-sourced software licensed under the MIT License. See the LICENSE file for more information.