Print version when RAGFlow server startup (#3393)

### What problem does this PR solve?

Print version when RAGFlow server startup

### Type of change

- [x] New Feature (non-breaking change which adds functionality)

---------

Signed-off-by: jinhai <haijin.chn@gmail.com>
Co-authored-by: Kevin Hu <kevinhu.sh@gmail.com>
This commit is contained in:
Jin Hai
2024-11-14 15:51:30 +08:00
committed by GitHub
parent 95d21e5d9f
commit 201bbef7c0
6 changed files with 97 additions and 6 deletions

View File

@ -35,7 +35,7 @@ from api.utils.log_utils import logger
from api.db.db_models import init_database_tables as init_web_db
from api.db.init_data import init_web_data
from api.versions import get_versions
from api.versions import get_versions, RAGFLOW_VERSION_INFO
def update_progress():
@ -56,6 +56,9 @@ if __name__ == '__main__':
/_/ |_|/_/ |_|\____//_/ /_/ \____/ |__/|__/
""")
logger.info(
f'RAGFlow version: {RAGFLOW_VERSION_INFO}'
)
logger.info(
f'project base: {utils.file_utils.get_project_base_directory()}'
)