Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial-app-deploy-configure #20

Open
wants to merge 3 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,7 @@

- **Current user can reserve the item basing the date and city.**

- **JavaScript and Stylelint linters are installed for code implementation improvement**

- **Uses React Redux middleware to work with async functions for API interactions"**
- **Uses React Redux middleware for async functions API interactions**

- **The application has CRUD operations.**

Expand Down Expand Up @@ -241,7 +239,7 @@ This Project is deployed using [Render](https://render.com/)

## 👥 Authors <a name="authors"></a>

👤 **Deborah Fashoro**
👤 **Toyyib Bello Omobolaji**

- GitHub: [@githubhandle](https://github.com/Simpleshaikh1)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/toyyib-abayomi/)
Expand Down Expand Up @@ -269,7 +267,11 @@ This Project is deployed using [Render](https://render.com/)

- [ ] **Apply admin authorization, and restrict the Create new car, delete a car actions unless admin.**

- [ ] **Add the Delete Reservation Feature.**
- [ ] **Add the Delete or Cancel Reservation Feature.**

- [ ] **Add cars data from Admin and update landing page.**

- [ ] **Update the image uploading in the `Add new Car` so the items renders uploaded image.**

<p align="right">(<a href="#readme-top">back to top</a>)</p>

Expand Down
147 changes: 147 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"homepage": "https://tan12082001.github.io/Vehicle-Booking-App-Frontend",
"name": "vehicle-booking-app-frontend",
"version": "0.1.0",
"private": true,
Expand All @@ -11,6 +12,7 @@
"axios": "^1.6.2",
"date-fns": "^2.30.0",
"formik": "^2.4.5",
"gh-pages": "^6.1.0",
"identity-obj-proxy": "^3.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
Expand All @@ -25,6 +27,8 @@
"yup": "^1.3.2"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/NotFound404.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';

const NotFound404 = () => (
<p>NotFound404</p>
<p>NotFound Try again by signing in!</p>
);

export default NotFound404;