This repository contains the Qiskit Fall Fest 2025 website with Flask deployment for local intranet access.
./run_server.sh
- Install dependencies:
pip install -r requirements.txt
- Run the Flask server:
python flask_server.py
- Open your browser and go to:
http://localhost:5000
- Find your computer's IP address:
ip addr show | grep "inet " | grep -v 127.0.0.1
- Access from other devices using:
http://[YOUR_IP_ADDRESS]:5000
qiskit_iiserk/
├── index.html # Main website file
├── styles.css # Website styles
├── script.js # JavaScript functionality
├── flask_server.py # Flask application
├── requirements.txt # Python dependencies
├── run_server.sh # Easy startup script
├── assets/ # Images and media files
│ ├── profile_img/ # Team member profile images
│ └── Emojis/ # Website graphics
└── Fall Fest Graphics/ # Additional graphics
- ✅ Static file serving for all website assets
- ✅ Accessible on local network (intranet)
- ✅ Automatic dependency installation
- ✅ Debug mode enabled for development
- ✅ Easy startup with single command
Press Ctrl+C
in the terminal where the server is running to stop it.
- Python 3.7+
- Internet connection (for initial Flask installation)
- Local development and testing
- Intranet deployment for team access
- Demo presentations on local network
- Offline website hosting
Happy coding! 🚀