timzhu15 / AllPacka

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AllPacka

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!!

Current File Structure

.
├── 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

About


Languages

Language:JavaScript 90.0%Language:SCSS 9.5%Language:HTML 0.5%