• This repository has been archived on 30/Dec/2022
  • Stars
    star
    761
  • Rank 59,292 (Top 2 %)
  • Language
    Python
  • Created about 5 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

fullstack.ai

This repository has been archived. Please look for better examples if you want to deploy ML-driven application.

UI

API

Run

In order to deploy, you'll need to get mapbox API key here. Then in project directory run

echo MAPBOX_API_KEY=your.api.key > .env && \
docker pull nginx:latest && \
docker-compose up --build -d

Nginx configuration maps reverse proxy server to port 80

API guide

GET valid station id

curl -i "localhost:80/api/stations"

GET predicted trip time between two stations

"localhost:80/api?start=start_id&end=end_id"

Parameters

  • start_id (required) Valid start station id
  • end_id (required) Valid end station id

Example

curl -i "localhost:80/api?start=73&end=39"