https://github.com/mapswipe/manager-dashboard
Manager Dashboard for Mapswipe
https://github.com/mapswipe/manager-dashboard
Last synced: 5 months ago
JSON representation
Manager Dashboard for Mapswipe
- Host: GitHub
- URL: https://github.com/mapswipe/manager-dashboard
- Owner: mapswipe
- License: apache-2.0
- Created: 2025-02-05T09:21:40.000Z (over 1 year ago)
- Default Branch: develop
- Last Pushed: 2026-01-22T15:03:14.000Z (5 months ago)
- Last Synced: 2026-01-23T01:33:06.631Z (5 months ago)
- Language: TypeScript
- Size: 2.27 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Manager Dashboard
A web interface for create and manage
projects, tutorials, groups for the MapSwipe.
## Local Development (Using pnpm, without backen)
```bash
# Start web app
pnpm start
# Build web app
pnpm build
# Typescript check
pnpm typecheck
# Eslint check
pnpm lint
# Check unused files
pnpm check-unused
```
## Local Development (Using Docker, with backend)
We use a `docker-compose.yml` file (located at `./backend/docker-compose.yml`).
To run it, you need to set up a `.env` file.
Create a `.env` file with the following content:
```
# Include the backend services
COMPOSE_FILE=./backend/docker-compose.yaml:docker-compose.yml
# Use the same .env file for both backend and web-app
BACKEND_ENV_FILE=../.env
```
> NOTE: `../` refers to the web-app folder, relative to `./backend/docker-compose.yml` (the main Docker Compose file).