Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: 🍴 I TEST

on:
push:
branches: ["master", "staging"]
pull_request:
branches: ["master", "staging"]
jobs:
Expand All @@ -22,3 +20,6 @@ jobs:
- name: 🧪 Run tests
run: |
python -m unittest discover -s tests

- name: Friendly message - End
run: echo "✅ All done"
25 changes: 1 addition & 24 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Python FastAPI/Postgres App
## Python

> Production-ready, open-source FastAPI application with PostgreSQL and blazing-fast full-text search.

Expand Down Expand Up @@ -65,29 +65,6 @@ SELECT * FROM prospects WHERE search_vector @@ plainto_tsquery('english', 'searc

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.


## Directory Structure

```
app/
main.py # FastAPI entrypoint
api/ # API endpoints & schemas
health.py
root.py
routes.py
products/
prompts/
prospects/
resend/
utils/
static/ # Static assets (e.g., repoicon.png)
utils/ # Utility scripts
tests/ # Pytest test suite
requirements.txt # Python dependencies
render.yaml # Deployment config (Render.com)
```


## Contributing

Contributions welcome. Please open issues or submit pull requests.
Expand Down
2 changes: 1 addition & 1 deletion app/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Python - FastAPI, Postgres, tsvector"""

# Current Version
__version__ = "2.1.3"
__version__ = "2.1.4"
Loading