A simple Web application that renders your GPS traces using OpenStreetMaps
Find a file
2025-02-28 01:45:39 +01:00
.drone apk add make to the Docker image used for the build. 2025-02-28 01:45:39 +01:00
frontend Fixed tsc type error. 2025-02-28 01:28:28 +01:00
src Support for paginated results. 2025-02-24 00:28:59 +01:00
.drone.yml [CI/CD] Added build step. 2025-02-28 01:39:02 +01:00
.env.example Major bootstrap. 2025-02-22 16:31:43 +01:00
.gitignore Major bootstrap. 2025-02-22 16:31:43 +01:00
LICENSE Added LICENSE 2025-02-28 00:17:37 +01:00
Makefile Fixed build execution in Makefile 2025-02-28 01:44:53 +01:00
package-lock.json Major bootstrap. 2025-02-22 16:31:43 +01:00
package.json Major bootstrap. 2025-02-22 16:31:43 +01:00
README.md [CI/CD] Added build step. 2025-02-28 01:39:02 +01:00
tsconfig.json Major bootstrap. 2025-02-22 16:31:43 +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.

Building the application

make

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

# Backend
npm install
npm run build

# Frontend
cd frontend
npm install
npm run build

Configuration

See .env.example for a reference. Copy it to .env and modify it accordingly.

Running the application

Local installation

npm run start

Docker

[[TODO]]

Project Setup

Compile and Hot-Reload for Development

Backend

npm run dev

Frontend

cd frontend
npm run dev

Lint with ESLint

npm run lint