From 34e7f6946553d58f8a5cfc37c961d24509383800 Mon Sep 17 00:00:00 2001 From: Felipe Cardoso Date: Thu, 20 Nov 2025 13:01:05 +0100 Subject: [PATCH] Replace "FastNext" references with "PragmaStack" in migration script and configuration settings --- backend/app/core/config.py | 2 +- backend/migrate.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/app/core/config.py b/backend/app/core/config.py index 11def0c..c192697 100644 --- a/backend/app/core/config.py +++ b/backend/app/core/config.py @@ -5,7 +5,7 @@ from pydantic_settings import BaseSettings class Settings(BaseSettings): - PROJECT_NAME: str = "App" + PROJECT_NAME: str = "PragmaStack" VERSION: str = "1.0.0" API_V1_STR: str = "/api/v1" diff --git a/backend/migrate.py b/backend/migrate.py index 15748d6..107baef 100755 --- a/backend/migrate.py +++ b/backend/migrate.py @@ -143,7 +143,7 @@ def check_database_connection(): def main(): """Main function""" parser = argparse.ArgumentParser( - description='Database migration helper for FastNext template' + description='Database migration helper for PragmaStack template' ) subparsers = parser.add_subparsers(dest='command', help='Command to run')