FriendZone is a university project for organizing social events and tracking when invited participants arrive at the meeting point.
This repo is split into two parts:
| Directory | Description |
|---|---|
android/ |
Kotlin + Jetpack Compose mobile app |
api/ |
NestJS backend (REST, WebSocket, PostgreSQL) |
The backend handles authentication, events, invitations, location sharing, proximity detection, real-time sync over Socket.IO, and optional push notifications via Firebase.
Quick start with Docker:
cd api
cp .env.example .env
docker compose up --buildOnce running:
- API: http://localhost:3000
- Swagger docs: http://localhost:3000/api/docs
Firebase is optional — the server runs without it; only push notifications are disabled.
For local dev without Docker, environment variables, WebSocket usage, deployment notes, and the full API reference, see api/README.md.
The Android client lives in android/. Open that folder in Android Studio to build and run the app.