Time Machine is a web application that transports you back in time.
Choose any date, and you'll discover:
- ✨ Notable births
- 🕯️ Important deaths
- 📜 Historic events
All data is powered by Wikimedia’s “On This Day” API, bringing real historical records to life from Wikipedia.
- Node.js
- Python 3.9+
- pip
- (Optional) Docker + Docker Compose
git clone https://github.com/TodayNightt/time-machine.git
cd time-machine
cd frontend
npm install
npm run build
cd ../backend
pip install -r requirements.txt
- Windows:
waitress-serve --port 5000 main:app
- Linux/macOS:
gunicorn --bind 0.0.0.0:5000 --workers 4 main:app
- Docker compose
docker compose up
- Prebuilt Docker image
docker load time-machine.tar