A web application that helps US residents find native plants suitable for their gardens. Users can search and filter plants based on various criteria like sun exposure, soil moisture, pollinators attracted, and more. The app also shows where to buy these plants locally.
- Interactive plant search and filtering
- Detailed plant information including growing conditions
- Local nursery finder showing where to buy plants
- Quick search wizard for beginner gardeners
- Mobile-friendly responsive design
- Frontend: Vue.js web application
- Backend: Node.js server
- Database: MongoDB
- Data Source: ERA via Google Sheets
- Vendor Integration: PlantagentsAPI for local nursery data
- Docker Desktop installed and running
- Git
- Access to Code for Philly Slack channel (for env keys and secrets)
# Clone the repository
git clone https://github.com/CodeForPhilly/pa-wildflower-selector
# Navigate to project directory
cd pa-wildflower-selector
- Join the Code for Philly Slack channel
- Request the following files:
- Environment key
- secrets.yaml
- Plant images package
# Build and start containers
docker compose up -d --build
The application will be available at http://localhost:6868/
After first launch, you'll need to:
-
Add Plant Images
- Copy provided images to the images folder
-
Import Plant Data
# Import from Google Sheets (skipping image download) docker-compose exec app node ./download.js --skip-images
-
Process Data
# Transform data for UI compatibility docker-compose exec app node massage.js
/src
- Frontend Vue.js application code/lib
- Backend server utilities/public
- Static assets/helm-chart
- Kubernetes deployment configuration