MeetSpot
End the "Where should we meet?" debate by instantly finding a spot that’s fair, convenient, and loved by everyone. An intelligent meeting point recommendation system.
File Explorer
Download Latest Version (.zip)- arrange.md
- deploy.md
- 00-repo-scan.md
- 01-product-requirements.md
- 02-system-architecture.md
- 00-repo-scan.md
- 01-product-requirements.md
- 02-system-architecture.md
- 03-sprint-plan.md
- 04-dev-reviewed.md
- 05-qa-test-report-v2.md
- 05-qa-test-report.md
- DEPLOYMENT_APPROVED.md
- QA_SUMMARY.md
- frontend_ui_optimization.md
- help_wanted.md
- ml_recommendation.md
- auto-merge-clean.yml
- ci.yml
- keep-alive.yml
- lighthouse-ci.yml
- postmortem-check.yml
- postmortem-update.yml
- update-badges.yml
- dependabot.yml
- FUNDING.yml
- api-development.md
- development-standards.md
- project-overview.md
- __init__.py
- auth.py
- payment.py
- seo_pages.py
- __init__.py
- seo_content.py
- index.py
- __init__.py
- base.py
- meetspot_agent.py
- tools.py
- __init__.py
- jwt.py
- sms.py
- __init__.py
- crud.py
- database.py
- payment_crud.py
- __init__.py
- message.py
- payment.py
- room.py
- user.py
- __init__.py
- signature.py
- __init__.py
- base.py
- file_operators.py
- google_maps_client.py
- meetspot_recommender.py
- tool_collection.py
- web_search.py
- __init__.py
- config.py
- config_simple.py
- design_tokens.py
- exceptions.py
- i18n.py
- llm.py
- logger.py
- schema.py
- .gitignore
- config.toml.example
- address_aliases.json
- cities.json
- 2026-03-08-feat-add-english-multilingual-plan.md
- zhihu-img-finder-input.png
- zhihu-img-homepage.png
- zhihu-img-result-map.png
- zhihu-img-result-recommendations.png
- zhihu-img-result-top.png
- agent-thinking-complex.jpg
- agent-thinking-en.png
- agent-thinking.jpg
- ai-chat-en.png
- aigclink-form-prep.md
- AI客服.jpg
- complex-scenario-input.jpg
- finder-filled.jpg
- finder-input-en.png
- finder-input.jpg
- homepage-en.png
- homepage.jpg
- logo.jpg
- result-ai-process.jpg
- result-map-en.png
- result-map.jpg
- result-recommendations.jpg
- result-summary-en.png
- result-summary.jpg
- result-traffic.jpg
- show1-en.png
- show1.jpg
- show2.jpg
- show3.jpg
- show4.jpg
- show5推荐地点.jpg
- show6停车建议.jpg
- show6地图展示.jpg
- show7高德地图.jpg
- thatware-meeting-prep.md
- Wechat.png
- x_promotion_thread.md
- 多维度智能评分show4.jpg
- en.json
- zh.json
- .gitkeep
- PM-2025-001.yaml
- PM-2025-002.yaml
- PM-2025-003.yaml
- PM-2025-004.yaml
- PM-2025-005.yaml
- PM-2025-006.yaml
- PM-2025-007.yaml
- PM-2025-008.yaml
- PM-2025-009.yaml
- PM-2025-010.yaml
- PM-2025-011.yaml
- PM-2025-012.yaml
- PM-2025-013.yaml
- PM-2025-014.yaml
- PM-2025-015.yaml
- PM-2025-016.yaml
- PM-2025-017.yaml
- PM-2025-018.yaml
- PM-2025-019.yaml
- PM-2025-020.yaml
- PM-2025-021.yaml
- PM-2025-022.yaml
- PM-2025-023.yaml
- PM-2025-024.yaml
- PM-2025-025.yaml
- PM-2025-026.yaml
- PM-2025-027.yaml
- PM-2026-001.yaml
- PM-2026-002.yaml
- PM-2026-003.yaml
- PM-2026-004.yaml
- PM-2026-005.yaml
- PM-2026-006.yaml
- PM-2026-007.yaml
- PM-2026-008.yaml
- PM-2026-009.yaml
- PM-2026-010.yaml
- PM-2026-011.yaml
- PM-2026-012.yaml
- PM-2026-013.yaml
- PM-2026-014.yaml
- PM-2026-015.yaml
- PM-2026-016.yaml
- PM-2026-017.yaml
- components.css
- meetspot-homepage.png
- meetspot-tool.png
- vx_chat.png
- vx_group.png
- vx_payment.png
- toast.js
- BingSiteAuth.xml
- favicon.svg
- google48ac1a797739b7b0.html
- meetspot_finder.html
- README_FAVICON.md
- design-tokens.css
- og-image.jpg
- ai_chat.html
- about.html
- city.html
- compare.html
- faq.html
- home.html
- how_it_works.html
- base.html
- test_postmortem_check.py
- test_result_i18n.py
- __init__.py
- postmortem_check.py
- postmortem_generate.py
- postmortem_init.py
- validate_colors.py
- .env.example
- .gitignore
- AGENTS.md
- CLAUDE.md
- Dockerfile
- environment-dev.yml
- environment.yml
- LICENSE
- lighthouserc.json
- package.json
- README.md
- README_ZH.md
- render.yaml
- requirements.txt
- web_server.py
🚀 Installation Guide
1. Get the code
git clone https://github.com/calderbuild/MeetSpot
Downloads the entire project code from GitHub to your computer.
cd MeetSpot
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -t meetspot .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 meetspot
Runs the built image as an actual container.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Node.js
EasyPrerequisites
npm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
4. Python
EasyPrerequisites
pip install -r requirements.txt
Installs the Python libraries listed in requirements.txt (or similar).
python <실행할 파일명>.py # README에서 정확한 실행 파일명을 확인하세요
Runs the Python script (or module).
If it runs without errors and prints output in the terminal, it worked.
// repository documentation
Was this content helpful?
(0 ratings)
