A recreation of the Car Rental Management platforms Navotar and RENTALL for educational purposes.
This project is written in Typescript, using React for the UI library, and Tailwindcss for styling. UI components from ui.shadcn.com are integrated throughout the web app. The web app employs OAuth2 OIDC authentication, Tanstack Router for routing, and Tanstack Query for server-state management.
- Clone the repository:
git clone https://github.com/SeanCassiere/nv-rental-clone.git
- Navigate to the project directory:
cd nv-rental-clone
- Install dependencies:
npm install
- Start the development server:
npm run dev
-
Copy the
.env.example
file and rename it as.env
. -
Obtain a valid ClientID from the OAuth2 authority (https://testauth.appnavotar.com). Ensure that the correct
allowed_origin
,redirect_uri
, andpost_logout_redirect_uri
are set to the values in the.env
file. -
Set the correct API URL in the
.env
file.
Contributions are always welcome!
If you'd like to contribute to this project, please follow these guidelines:
-
Fork the project.
-
Create your feature branch (
git checkout -b Username/YourFeature
). -
Commit your changes using the Conventional Commits standard. Please ensure meaningful and well-formatted commit messages.
- If you are using VSCode, you can install the Conventional Commits extension to help you with this.
- An example of a commit message:
feat: add a new feature
-
Push to the branch (
git push origin Username/YourFeature
). -
Open a pull request with a title following the Conventional Commits standard.
Please follow the CODE OF CONDUCT.
This project is licensed under the MIT License.