Offline Meetup Event Booking Platform
- 📦 SSR
- 🖼️ OG Tags
- 🚀 PWA
- ✋ Push Notification
- 🌙 Light/Dark Mode
- 🐋 Containerized
- 🪄 CI/CD (Github Action)
- 🎭 Authentication (OAuth 2.0)
- ⚡️ API Route Caching
- 📐 Analytics
- Initialize Swarm on the Manager Node
docker swarm init --advertise-addr <MANAGER-IP>- Join Worker Nodes to the Swarm
docker swarm join --token <WORKER-TOKEN> <MANAGER-IP>:2377- Check Node Status
docker node ls- Create a docker volume
docker volume create \
--name offlimate_static \
--driver local \
--opt type=none \
--opt device=~/shba007/offlimate/static \
--opt o=bind- Use Docker Stack to deploy multi-container application
docker stack deploy --compose-file docker-compose.prod.yml offlimate- Scale service
docker service scale offlimate_app=2- Verify
docker service ls
docker service ps offlimate_appPublished under the MIT license.

