-
Notifications
You must be signed in to change notification settings - Fork 0
Manual Hosting
Ivole32 edited this page Sep 30, 2025
·
1 revision
This guide explains how to manually run the Linux-API server on your machine.
- Python 3.11 or newer
- All dependencies installed (see
requirements.txt)
-
Clone the repository:
git clone https://github.com/Ivole32/Linux-API.git cd Linux-API -
Install dependencies:
pip install -r linux_api/requirements.txt
-
Start the server:
python -m uvicorn linux_api.server:app --host 0.0.0.0 --port 8000
- Access the API docs: Open http://localhost:8000/docs in your browser.
- The admin API key is printed to the console on first startup. Save it securely.
- For development, you can use
--reloadwith uvicorn for auto-reload on code changes.