Skip to content

Commit 631ceb9

Browse files
Merge pull request #63 from goldlabelapps/staging
Bump version, tweak CI, and trim README
2 parents 05d976d + 0f13b4c commit 631ceb9

3 files changed

Lines changed: 5 additions & 27 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: 🍴 I TEST
22

33
on:
4-
push:
5-
branches: ["master", "staging"]
64
pull_request:
75
branches: ["master", "staging"]
86
jobs:
@@ -22,3 +20,6 @@ jobs:
2220
- name: 🧪 Run tests
2321
run: |
2422
python -m unittest discover -s tests
23+
24+
- name: Friendly message - End
25+
run: echo "✅ All done"

README.md

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Python FastAPI/Postgres App
1+
## Python
22

33
> Production-ready, open-source FastAPI application with PostgreSQL and blazing-fast full-text search.
44
@@ -65,29 +65,6 @@ SELECT * FROM prospects WHERE search_vector @@ plainto_tsquery('english', 'searc
6565

6666
The `/prospects/process` endpoint supports robust ingestion of large CSVs (e.g., 1300+ rows, 300KB+), following the same normalization and insertion pattern as `/prospects/seed` but optimized for scale.
6767

68-
69-
## Directory Structure
70-
71-
```
72-
app/
73-
main.py # FastAPI entrypoint
74-
api/ # API endpoints & schemas
75-
health.py
76-
root.py
77-
routes.py
78-
products/
79-
prompts/
80-
prospects/
81-
resend/
82-
utils/
83-
static/ # Static assets (e.g., repoicon.png)
84-
utils/ # Utility scripts
85-
tests/ # Pytest test suite
86-
requirements.txt # Python dependencies
87-
render.yaml # Deployment config (Render.com)
88-
```
89-
90-
9168
## Contributing
9269

9370
Contributions welcome. Please open issues or submit pull requests.

app/__init__.py

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

33
# Current Version
4-
__version__ = "2.1.3"
4+
__version__ = "2.1.4"

0 commit comments

Comments
 (0)