union-app-chat-stream 1.1.6 → 1.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/app/asgi.py CHANGED
@@ -84,8 +84,6 @@ def create_app(
84
84
  load_dotenv(
85
85
  os.path.join(
86
86
  os.path.dirname(__file__),
87
- "config",
88
- "env",
89
87
  f".env.{environment}",
90
88
  ),
91
89
  override=False,
@@ -2,14 +2,14 @@ union-py-app:
2
2
  test:
3
3
  test:
4
4
  - template: deploy/autoconf/templates/env.j2
5
- dest: app/config/env/.env.test.bj12
5
+ dest: app/.env.test.bj12
6
6
  prod:
7
7
  bj11:
8
8
  - template: deploy/autoconf/templates/env.j2
9
- dest: app/config/env/.env.prod.bj11
9
+ dest: app/.env.prod.bj11
10
10
  sh20:
11
11
  - template: deploy/autoconf/templates/env.j2
12
- dest: app/config/env/.env.prod.sh20
12
+ dest: app/.env.prod.sh20
13
13
  sz31:
14
14
  - template: deploy/autoconf/templates/env.j2
15
- dest: app/config/env/.env.prod.sz31
15
+ dest: app/.env.prod.sz31
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "union-app-chat-stream",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "description": "Union operations PydanticAI ASGI service package.",
5
5
  "license": "UNLICENSED",
6
6
  "files": [
7
7
  "app",
8
- "!app/config/env/.env",
9
- "!app/config/env/.env.*",
8
+ "!app/.env",
9
+ "!app/.env.*",
10
10
  "!app/**/__pycache__",
11
11
  "!app/**/*.pyc",
12
12
  "deploy",