Skip to content

Commit b115b52

Browse files
committed
Rename project to 'I' and bump version
Rebrand project from 'NX-AI' to 'I': update CI workflow name, README title, Render project name, and FastAPI app title/description. Bump package version to 1.1.1. Update tests' docstrings to reflect the new naming and messaging.
1 parent 7f11e12 commit b115b52

6 files changed

Lines changed: 8 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 🍴 NX-API TEST
1+
name: 🍴 I TEST
22

33
on:
44
push:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Python NX AI
1+
## I
22

33
> FastAPI/Python/Postgres/tsvector.
44
Open Source, production ready Python FastAPI/Postgres app for [NX](https://goldlabel.pro?s=python-nx-ai)

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.1.0"
4+
__version__ = "1.1.1"

app/main.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@
44
from fastapi.staticfiles import StaticFiles
55
from fastapi.responses import FileResponse
66
import os
7-
8-
from app import __version__
97
from app.api.routes import router
108

119
app = FastAPI(
12-
title="NX-AI",
13-
description="Production-ready Python FastAPI app for NX",
10+
title="I",
11+
description="Production-ready Python with FastAPI and tsvector",
1412
version=__version__,
1513
)
1614

render.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Exported from Render on 2026-03-18T18:57:52Z
22
version: "1"
33
projects:
4-
- name: NX AI Python
4+
- name: I
55
environments:
66
- name: Production
77
services:

tests/test_routes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Unit and integration tests for NX AI routes."""
1+
"""Unit and integration tests for I endpoints."""
22

33
from unittest.mock import MagicMock
44
from fastapi.testclient import TestClient
@@ -8,7 +8,7 @@
88
client = TestClient(app)
99

1010
def test_root_returns_welcome_message() -> None:
11-
"""GET / should return a welcome message."""
11+
"""GET / should reply in the first person."""
1212
response = client.get("/")
1313
assert response.status_code == 200
1414
json_data = response.json()

0 commit comments

Comments
 (0)