Skip to content

Commit 75e07c5

Browse files
committed
Add .env.sample and bump version to 1.0.5
Add a .env.sample with environment variable placeholders for BASE_URL and Postgres connection (DB_HOST, DB_PORT=5432, DB_NAME, DB_USER, DB_PASSWORD). Update app __version__ from 1.0.4 to 1.0.5 to reflect the change.
1 parent 1b9f7c4 commit 75e07c5

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

.env.sample

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
BASE_URL=
2+
DB_HOST=
3+
DB_PORT=5432
4+
DB_NAME=
5+
DB_USER=
6+
DB_PASSWORD=

app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""NX AI - FastAPI/Python/Postgres/tsvector"""
22

33
# Current Version
4-
__version__ = "1.0.4"
4+
__version__ = "1.0.5"

0 commit comments

Comments
 (0)