Shorty's Rescue is a Full Stack React SPA showcasing dogs available for adoption. Users can view dog profiles with pictures and submit adoption interest forms. The site also features a donation page where visitors can make contributions to support the rescue.
- React
- Mongoose
- Express
- MongoDB (Cloud Database)
To run Shorty's Rescue locally, follow these steps:
-
Clone the repository: git clone https://github.com/okrayum/Shorty-s-Rescue.git
-
Install dependencies for the client:
cd client
npm install
-
From the client folder start the frontend:
npm run start
This will only provide access to the frontend of the project.
Full Functionality:
For access to the full functionality, including cloud database connections and environment variables, please inquire to GitHub user okrayum.
If you have obtained the required information to see the full project, you may follow the additional steps listed below.
-
Go back to the root directory:
cd ..
-
Install dependencies for the server:
cd server
npm install
-
Return to the client folder start the frontend and backend simultaneously using Concurrent:
cd ..
cd client
npm run start:dev