website to find the current and past status of the nearest Citibike stations.
This project is currently in development. Users can see the real time status and of the nearest Citibike stations as well as logs for the past week. Functionality to predict future status is in progress
Live demo is currently broken due to problemsn with Beanstalk's SQL DB. Working on getting it back.
Link: https://ky1044.github.io/Bikeable/
React frontend is hosted on Github Pages, Flask API and backend is hosted on AWS (Elastic Beanstalk).
- Critical issue with APScheduler on Elastic Beanstalk, which is used to schedule bike count updates and logging statuses. Live demo is currently broken, and cron is being considered as an alternative.
Desktop
- You will need
npm
andpython 3
installed globally on your machine. - Clone this repo to your local machine using
https://github.com/y1044/Bikeable
- Go to '/front-end' folder on command line
- start with
npm start
- terminate by holding
ctrl
+c
- Go to '/api' folder on command line
- activate virtual environment with
source venv/bin/activate
- start with
python3 application.py
- terminate by holding
ctrl
+c
- on your browser, visit
localhost:3000
The front end is built using HTML/CSS and Javascript, using the React framework. Libraries used for this project include Recharts, React Leaflet, and React Autosuggest.
The back end API is built with Flask, and currently gives users real time and past week info for nearby station statuses, which it stores in a local SQLite database using SQLAlchemy.
Citibike status is collected using their GBFS API, and weather data is collected using the Darksky API