Compare commits

..

No commits in common. "02276d5440cf328164fef94bd2167f48b1af5b80" and "f7ef8d76b6d2f07b536761a046b6db78483a669c" have entirely different histories.

2 changed files with 8 additions and 4 deletions

View File

@ -13,7 +13,7 @@ Only the clients need a connection to this service on configured port.
- https://gitea.publichub.eu/oscar.krause/fastapi-dls
- Docker Image `collinwebdesigns/fastapi-dls:latest`
*All other repositories are forks! (which is no bad - just for information and bug reports)*
*All other repositories are forks!*
---
@ -21,14 +21,14 @@ Only the clients need a connection to this service on configured port.
# Setup (Service)
**System requirements**
**System requirements**:
- 256mb ram
- 4gb hdd
Tested with Ubuntu 22.10 (from Proxmox templates), actually its consuming 100mb ram and 750mb hdd.
**Prepare your system**
**Prepare your system**:
- Make sure your timezone is set correct on you fastapi-dls server and your client
@ -368,6 +368,10 @@ Shows current runtime environment variables and their values.
HTML rendered README.md.
### `GET /-/docs`, `GET /-/redoc`
OpenAPI specifications rendered from `GET /-/openapi.json`.
### `GET /-/manage`
Shows a very basic UI to delete origins or leases.

View File

@ -28,7 +28,7 @@ TZ = datetime.now().astimezone().tzinfo
VERSION, COMMIT, DEBUG = env('VERSION', 'unknown'), env('COMMIT', 'unknown'), bool(env('DEBUG', False))
config = dict(openapi_url=None, docs_url=None, redoc_url=None) # dict(openapi_url='/-/openapi.json', docs_url='/-/docs', redoc_url='/-/redoc')
config = dict(openapi_url='/-/openapi.json', docs_url='/-/docs', redoc_url='/-/redoc')
app = FastAPI(title='FastAPI-DLS', description='Minimal Delegated License Service (DLS).', version=VERSION, **config)
db = create_engine(str(env('DATABASE', 'sqlite:///db.sqlite')))
db_init(db), migrate(db)