Go to file
2024-06-05 22:59:20 +03:00
app TEMP 2024-06-05 22:59:20 +03:00
.gitignore TEMP: Working data pipeline & rendering 2024-06-01 16:15:31 +03:00
.nvmrc TEMP 2024-06-05 22:59:20 +03:00
LICENSE Initial commit 2024-05-26 13:08:54 +03:00
Pipfile TEMP: Rewrite everything on top of FastAPI 2024-05-31 23:14:15 +03:00
Pipfile.lock TEMP: Rewrite everything on top of FastAPI 2024-05-31 23:14:15 +03:00
README.md TEMP 2024-06-05 22:59:20 +03:00
tsconfig.json TEMP 2024-06-05 22:59:20 +03:00

Traceroute Internet Mapper - TIM

Development

Backend

Pre-requisites: pipenv, or whichever venv manager you prefer

# Install all dependencies. `pipenv` was used previously:
pipenv --python 3.11
pipenv install

# Start dev server
pipenv shell
fastapi dev app/main.py

# Start posting data to the tracing endpoint:
traceroute git.rauhala.info -q1 | http POST localhost:8000/trace/MYHOSTNAME

Frontend

Pre-requisites: nvm, tsc / typescript

# Install latest npm version with node version manager:
nvm install 22

# Install project packages:
npm install

# Regular usage, activate project node version & start TS compiler in watch mode:
nvm use
tsc -w

URLs of interest