Curated immersive virtual walks through US National Parks. Where you're invited to relax, unwind, and experience the splendor of some of the US's most mesmerizing landscapes.
Allows users to log in, set up a profile, bookmark and save their favorite walks, like/unlike their favorite walks, and upload their own walks. Imagined during the pandemic and built for anyone anywhere that wants to get away to the vast and beautiful outdoors but isn't able to at the moment. A chance to relax, unwind, reset, and recharge.
https://parkside-virtual-walks-app.herokuapp.com/
email: tester1234@gmail.com
password: tester1234
- Frontend: JavaScript, EJS, CSS, Bootstrap
- Backend: Node.js, Express.js
- Database: MongoDB, Mongoose
- Authentication: Passport, bcrypt
- Media Handling: Cloudinary, Multer
- Logging & Debugging: Morgan
- Testing: Jest, Supertest
- Environment & Configuration: dotenv
- Development Utilities: Nodemon
- This is an ongoing labor of love that I'm really enjoying tweaking, polishing, streamlining, and optimizing as I go
- I'm currently working on the ability to search and sort walks by park name, terrain, guide, state, and speaking guide or just nature sounds only
- I'm also working on adding more fleshed out profile features
- As well as adding a section to get-started page discussing recent in-the-news litigation and controversy surrounding filming in US National Parks
npm install
- Create a
.env
file in config folder and add the following askey=value
- PORT=2121 (can be any port example: 3000)
- DB_STRING=
'your database URI'
- CLOUD_NAME=
'your cloudinary cloud name'
- API_KEY=
'your cloudinary api key'
- API_SECRET=
'your cloudinary api secret'
-
For Production
npm start
-
For Development
npm run dev
This project uses Jest for unit testing, along with additional libraries including supertest and mongodb-memory-server for specific functionalities.
To run the tests locally:
npm test
- Coverage reports can be generated using:
npm run test:coverage
- The coverage summary will be displayed in the CLI upon completion of the test run
- Detailed reports will also be generated and available in the designated
coverage
directory
For guidelines on writing tests, please refer to the Jest documentation and consult existing tests within the __tests__
directory