2.5 KiB
Executable File
2.5 KiB
Executable File
Reservation Platform Backend
This is the Flask backend for the 3D Printer Reservation Platform, providing a RESTful API for managing printers, reservations, and users.
Features
- User authentication with email/password
- Role-based permission system (admin, user)
- Printer management
- Reservation system
- User management
API Endpoints
Authentication
POST /auth/register
- Register a new userPOST /auth/login
- Login with username/email and passwordPOST /auth/logout
- Log out a user by invalidating their session
Printers
GET /api/printers
- Get all printersGET /api/printers/<printer_id>
- Get a specific printerPOST /api/printers
- Create a new printer (admin only)PUT /api/printers/<printer_id>
- Update a printer (admin only)DELETE /api/printers/<printer_id>
- Delete a printer (admin only)GET /api/printers/availability
- Get availability information for all printers
Print Jobs
GET /api/jobs
- Get jobs for the current user or all jobs for adminGET /api/jobs/<job_id>
- Get a specific jobPOST /api/jobs
- Create a new print job (reserve a printer)PUT /api/jobs/<job_id>
- Update a jobDELETE /api/jobs/<job_id>
- Delete a job (cancel reservation)GET /api/jobs/<job_id>/remaining-time
- Get remaining time for a job (public endpoint)
Users
GET /api/users
- Get all users (admin only)GET /api/users/<user_id>
- Get a specific user (admin only)PUT /api/users/<user_id>
- Update a user (admin only)DELETE /api/users/<user_id>
- Delete a user (admin only)GET /api/me
- Get the current user's profilePUT /api/me
- Update the current user's profile
Installation
Prerequisites
- Python 3.11 or higher
- pip
Setup
-
Clone the repository
git clone https://github.com/your-repo/reservation-platform.git cd reservation-platform/packages/flask-backend
-
Install dependencies
pip install -r requirements.txt
-
Create a
.env
file with the following variables:SECRET_KEY=your-secret-key DATABASE_URL=sqlite:///app.db JWT_SECRET=your-jwt-secret
-
Initialize the database
flask db upgrade python scripts/init_db.py
-
Run the development server
python wsgi.py
Docker Deployment
- Build and run with Docker Compose
docker-compose up -d
Development
Running Migrations
To create a new migration after updating models:
flask db migrate -m "Description of changes"
flask db upgrade