This is an app that helps you and your friend prepare for any and every trip!
Once you fork and clone this repo, you will need to install the depenedencies. Do this by running...
npm install
To develop the client, run...
npm start
To test the server with postman, or another app, enter the server folder and run
npm run dev
You're now up and running! Happy Hackinig!!
.
├── README.md
├── client
│ ├── App.jsx
│ ├── index.html
│ ├── index.js
│ ├── layouts
│ │ └── rootLayout.jsx
│ └── pages
│ ├── LoginPage.jsx
│ ├── SignupPage.jsx
│ ├── TripHome
│ │ ├── NewTripPage.jsx
│ │ ├── TripHomeComponents
│ │ └── TripHomePage.jsx
│ └── UserHome
│ ├── UserHomeComponents
│ └── UserHomePage.jsx
├── package-lock.json
├── package.json
├── server
│ ├── controllers
│ │ ├── cookieController.js
│ │ ├── sessionController.js
│ │ ├── tripController.js
│ │ └── userController.js
│ ├── models.js
│ ├── routes
│ │ ├── tripRouter.js
│ │ └── userRouter.js
│ └── server.js
└── webpack.config.js