From 2106d13b12a25f20e02e37c8bcf1304a4d922eef Mon Sep 17 00:00:00 2001 From: JiWoong Sul Date: Mon, 22 Sep 2025 20:33:35 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9B=B9=20=ED=85=8C=EC=8A=A4=ED=8A=B8?= =?UTF-8?q?=EC=9A=A9=20=EA=B8=B0=EB=B3=B8=20=ED=99=98=EA=B2=BD=20=ED=8C=8C?= =?UTF-8?q?=EC=9D=BC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + assets/.env.development | 12 ++++++++++++ pubspec.yaml | 3 +++ 3 files changed, 16 insertions(+) create mode 100644 assets/.env.development diff --git a/.gitignore b/.gitignore index fdca77f..755dfe9 100644 --- a/.gitignore +++ b/.gitignore @@ -47,3 +47,4 @@ app.*.map.json # Env files .env.* !.env.*.example +!assets/.env.* diff --git a/assets/.env.development b/assets/.env.development new file mode 100644 index 0000000..f9fc045 --- /dev/null +++ b/assets/.env.development @@ -0,0 +1,12 @@ +API_BASE_URL=http://localhost:8080 + +FEATURE_VENDORS_ENABLED=true +FEATURE_PRODUCTS_ENABLED=true +FEATURE_WAREHOUSES_ENABLED=true +FEATURE_CUSTOMERS_ENABLED=true +FEATURE_USERS_ENABLED=false +FEATURE_GROUPS_ENABLED=false +FEATURE_MENUS_ENABLED=false +FEATURE_GROUP_PERMISSIONS_ENABLED=false +FEATURE_APPROVALS_ENABLED=false +FEATURE_ZIPCODE_SEARCH_ENABLED=false diff --git a/pubspec.yaml b/pubspec.yaml index 045330a..c9dd0e7 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -69,6 +69,9 @@ flutter: # the material Icons class. uses-material-design: true + assets: + - assets/.env.development + # To add assets to your application, add an assets section, like this: # assets: # - images/a_dot_burr.jpeg