This was a General Assembly bootcamp final project that is being developed with AI agents for open source. Contact me with any questions about it. Find bugs? Create an issue. By all means create a PR with contributions.
A collaborative travel planning application for creating and sharing travel experiences.
React • MongoDB • Bun • Express • AWS S3 • Bootstrap
- Collaborative Planning - Work with others on shared travel experiences
- Destination Management - Add and favorite destinations worldwide
- Plan Tracking - Mark tasks complete as you finalize plans
- Photo Uploads - Add photos to destinations and experiences
- Social Authentication - Sign in with Facebook, Google, or X (Twitter)
- Bun (v1.0+)
- MongoDB Atlas account (recommended - free tier available at mongodb.com/cloud/atlas)
- AWS S3 bucket (for photo storage)
- PM2 (
bunx pm2)
-
Clone and install
git clone https://github.com/gokepelemo/biensperience.git cd biensperience bun install -
Configure environment - Create
.envfile:DATABASE_URL=mongodb+srv://user:pass@cluster.mongodb.net/db SECRET=your-jwt-secret AWS_REGION=us-east-1 AWS_ACCESS_KEY_ID=your-key AWS_SECRET_ACCESS_KEY=your-secret S3_BUCKET_NAME=your-bucket
-
Create upload directories (required for file uploads)
mkdir -p uploads/images uploads/documents uploads/temp
These directories store user-uploaded content and are gitignored.
-
Generate sample data (optional)
bun run sampleData.js # Creates 180 users, 90 destinations, 270 experiences, 450 plans, 600 photos -
Start with PM2
pm2 start ecosystem.config.js # API: http://localhost:3000 # Frontend: http://localhost:3001
Development mode (without PM2):
npm start # Frontend: http://localhost:3001 # API: http://localhost:3000
If you publish this repo to npm (or install directly from GitHub), you can run Biensperience via the included CLI.
-
Install
# From npm (after publishing) npm install biensperience # Or directly from GitHub npm install github:gokepelemo/biensperience
-
Initialize environment
npx biensperience init
-
Start the server
npx biensperience start
PM2 Commands:
pm2 start ecosystem.config.js # Start application
pm2 logs # View logs
pm2 stop all # Stop application
pm2 restart all # Restart application
pm2 delete all # Remove from PM2Testing:
bun test # Frontend tests
bun run test:api # Backend tests
bun run build # Production buildUI Design System & Storybook:
bun run storybook # Start Storybook at http://localhost:6006Storybook provides interactive documentation for all UI components, design tokens, and patterns. Browse:
- Components - Reusable UI components (buttons, cards, forms, navigation)
- Design System - Colors, typography, spacing, utilities, and patterns
- Layouts - Common page layouts and authentication flows
All components follow the design system with full dark mode support and responsive design.
Contributions are welcome.
- Start here: CONTRIBUTING.md
- Community standards: CODE_OF_CONDUCT.md
- Security issues: SECURITY.md (please report privately)
Report bugs via Issues.
AGPL-3.0 © 2025 Goke Pelemo - See LICENSE for details.
Network use requires source code disclosure. See LICENSE for full terms.
"Biensperience" is a trademark of Goke Pelemo. See TRADEMARK.md for usage policy.
© 2025 Goke Pelemo. All rights reserved.