diff --git a/dev_scripts/convert_alta_to_adex_cache.py b/dev_scripts/convert_alta_to_adex_cache.py index 607cf1f79938da4390d46df0137b4c95569ff474..afb084cf2247c251d7fc63ae1b14506a9ee665a0 100644 --- a/dev_scripts/convert_alta_to_adex_cache.py +++ b/dev_scripts/convert_alta_to_adex_cache.py @@ -130,7 +130,7 @@ def main(): # Check the invocation arguments parser = argparse.ArgumentParser() parser.add_argument("--version", default=False, help="Show current version of this program", action="store_true") - parser.add_argument("--source_database_url", nargs="?", default='postgres:postgres@localhost/altadb_1sept2022:5432', help="Source database string") + parser.add_argument("--source_database_url", nargs="?", default='postgres:postgres@localhost/alta:5432', help="Source database string") parser.add_argument("--target_database_url", nargs="?", default='postgres:postgres@localhost/adex_cache:5432', help="Source database string") args = parser.parse_args() diff --git a/main.py b/main.py index 3ba56cade57866668304dfd893ed91f808492972..8e8d3e39b407479155594595d9f8f5ea87eb0306 100644 --- a/main.py +++ b/main.py @@ -9,7 +9,7 @@ from routers import skyviews app = FastAPI( title="ADEX backend", description="ADEX backend FastAPI", - version="0.0.1", + version="0.1.0", docs_url='/adex-fastapi/docs', redoc_url='/adex-fastapi/redoc', openapi_url='/adex-fastapi/openapi.json',