Meetup Flow is a web application for organizing meetups, featuring an Angular frontend and a Flask backend, orchestrated with Docker Compose.
frontend/: Angular application (Material Design)backend/: Flask application (API)docker-compose.yml: Docker configuration for running the stack locally.
- Docker and Docker Compose
- Node.js (for local frontend development)
- Python 3.9+ (for local backend development)
docker-compose up --build- Frontend: http://localhost:4200
- Backend: http://localhost:5001
- Database: MySQL (port 3306)
cd frontend
npm install
npm startcd backend
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
flask run