A simple Web application that renders your GPS traces using OpenStreetMaps
Find a file
2025-03-10 02:33:16 +01:00
.drone apk add make to the Docker image used for the build. 2025-02-28 01:45:39 +01:00
frontend Fixed Typescript errors 2025-03-10 02:33:16 +01:00
src Increased API body size to 10MB. 2025-03-10 01:34:27 +01:00
.drone.yml [CI/CD] Added build step. 2025-02-28 01:39:02 +01:00
.env.example Added POST/DELETE /gpsdata endpoints. 2025-03-10 01:33:33 +01:00
.gitignore Added Docker support. 2025-03-07 00:19:45 +01:00
docker-compose.yml Added Docker support. 2025-03-07 00:19:45 +01:00
Dockerfile [Dockerfile] Cleanup dev dependencies after build 2025-03-07 22:48:28 +01:00
LICENSE Added LICENSE 2025-02-28 00:17:37 +01:00
Makefile Added separate Makefile for frontend 2025-02-28 02:26:55 +01:00
package-lock.json Moved db and migrations management to umzug. 2025-03-07 22:07:59 +01:00
package.json Moved db and migrations management to umzug. 2025-03-07 22:07:59 +01:00
README.md Added Docker support. 2025-03-07 00:19:45 +01:00
tsconfig.json Refactored backend. 2025-03-01 11:45:13 +01:00

GPSTracker

Build Status

Track your GPS data, from any data source

GPSTracker is a simple Webapp that consists of:

  • A backend that:
    • Can read GPS data from any compatible data source (supported: postgres, mysql, mariadb, mongodb, sqlite, snowflake), with arbitrary complex filtering, and expose them over a simple Web API.
    • [[TODO]] Can ingest GPS data points from HTTP, MQTT, Websocket or Kafka.
  • A frontend to display GPS data points and provides advanced filtering.

Screenshot of GPSTracker

Configuration

cp .env.example .env

See the provided .env.example for a reference.

Docker installation

docker compose up

Local installation

Build

Requirements:

  • node
  • typescript
  • make
make

Or, if you want to build the backend and the frontend separately:

# Backend
make backend

# Frontend
make frontend

Run

npm run start

Development

Compile and Hot-Reload for Development

Backend

npm run dev

Frontend

cd frontend
npm run dev