Compare commits

...

3 Commits

Author SHA1 Message Date
02276d5440 disabled openapi endpoints 2023-01-23 07:33:54 +01:00
9ebff8d6ca typos 2023-01-23 07:29:13 +01:00
48eb6d6c64 typos 2023-01-23 07:23:42 +01:00
2 changed files with 4 additions and 8 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 - https://gitea.publichub.eu/oscar.krause/fastapi-dls
- Docker Image `collinwebdesigns/fastapi-dls:latest` - Docker Image `collinwebdesigns/fastapi-dls:latest`
*All other repositories are forks!* *All other repositories are forks! (which is no bad - just for information and bug reports)*
--- ---
@ -21,14 +21,14 @@ Only the clients need a connection to this service on configured port.
# Setup (Service) # Setup (Service)
**System requirements**: **System requirements**
- 256mb ram - 256mb ram
- 4gb hdd - 4gb hdd
Tested with Ubuntu 22.10 (from Proxmox templates), actually its consuming 100mb ram and 750mb 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 - Make sure your timezone is set correct on you fastapi-dls server and your client
@ -368,10 +368,6 @@ Shows current runtime environment variables and their values.
HTML rendered README.md. HTML rendered README.md.
### `GET /-/docs`, `GET /-/redoc`
OpenAPI specifications rendered from `GET /-/openapi.json`.
### `GET /-/manage` ### `GET /-/manage`
Shows a very basic UI to delete origins or leases. 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)) VERSION, COMMIT, DEBUG = env('VERSION', 'unknown'), env('COMMIT', 'unknown'), bool(env('DEBUG', False))
config = dict(openapi_url='/-/openapi.json', docs_url='/-/docs', redoc_url='/-/redoc') config = dict(openapi_url=None, docs_url=None, redoc_url=None) # 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) app = FastAPI(title='FastAPI-DLS', description='Minimal Delegated License Service (DLS).', version=VERSION, **config)
db = create_engine(str(env('DATABASE', 'sqlite:///db.sqlite'))) db = create_engine(str(env('DATABASE', 'sqlite:///db.sqlite')))
db_init(db), migrate(db) db_init(db), migrate(db)