diff --git a/README.md b/README.md index 8220259..649b158 100644 --- a/README.md +++ b/README.md @@ -368,10 +368,6 @@ 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. diff --git a/app/main.py b/app/main.py index e9ed1dd..4b78253 100644 --- a/app/main.py +++ b/app/main.py @@ -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='/-/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) db = create_engine(str(env('DATABASE', 'sqlite:///db.sqlite'))) db_init(db), migrate(db)