Skip to content

Commit a263852

Browse files
committed
Merge branch 'main' into inertia-framework
2 parents 9759f10 + 2405924 commit a263852

99 files changed

Lines changed: 77 additions & 5894 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/lint.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Lint
2+
3+
on:
4+
push:
5+
branches: ["**"]
6+
pull_request:
7+
branches: ["**"]
8+
9+
jobs:
10+
ruff:
11+
name: Ruff
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Install uv
17+
uses: astral-sh/setup-uv@v5
18+
19+
- name: Set up Python
20+
uses: actions/setup-python@v5
21+
with:
22+
python-version: "3.12"
23+
24+
- name: Install dependencies
25+
working-directory: fastapi_startkit
26+
run: uv sync --group dev
27+
28+
- name: Run ruff check
29+
working-directory: fastapi_startkit
30+
run: uv run ruff check .
31+
32+
- name: Run ruff format check
33+
working-directory: fastapi_startkit
34+
run: uv run ruff format --check .

example/inertia-pingcrm-app/.gitignore

Lines changed: 0 additions & 15 deletions
This file was deleted.

example/inertia-pingcrm-app/app/http/__init__.py

Whitespace-only changes.

example/inertia-pingcrm-app/app/http/controllers/__init__.py

Whitespace-only changes.

example/inertia-pingcrm-app/app/http/controllers/auth/__init__.py

Whitespace-only changes.

example/inertia-pingcrm-app/app/http/controllers/auth/authenticated_session_controller.py

Lines changed: 0 additions & 25 deletions
This file was deleted.

example/inertia-pingcrm-app/app/http/controllers/contacts_controller.py

Lines changed: 0 additions & 84 deletions
This file was deleted.

example/inertia-pingcrm-app/app/http/controllers/dashboard_controller.py

Lines changed: 0 additions & 5 deletions
This file was deleted.

example/inertia-pingcrm-app/app/http/controllers/images_controller.py

Lines changed: 0 additions & 7 deletions
This file was deleted.

example/inertia-pingcrm-app/app/http/controllers/organizations_controller.py

Lines changed: 0 additions & 70 deletions
This file was deleted.

0 commit comments

Comments
 (0)