Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove neapolitan fork and reorder INSTALLED_APPS #246

Merged
merged 2 commits into from
Jul 31, 2024
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: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Now using `simplify` branch of `westerveltco/setup-ci-action` GitHub Action.
- Added `[tables]` extra to `django-twc-ui`.
- Added `[crud]` extra to `django-twc-toolbox`.
- Shuffled around the order of `INSTALLED_APPS` to ensure our UI templates have priority over any other installed third-party library.

### Removed

- Our `neapolitan` for is in the process of being abandoned in favor of a custom `neapolitan.views.CRUDView` in `django_twc_toolbox.crud`. The fork has been removed from the dependencies.

## [2024.34]

Expand Down
1 change: 0 additions & 1 deletion src/django_twc_project/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ dependencies = [
"gunicorn",
"heroicons[django]",
"httpx",
"neapolitan @ git+https://github.com/westerveltco/neapolitan.git@main",
"openpyxl",
"psycopg",
"psycopg-binary",
Expand Down
9 changes: 5 additions & 4 deletions src/django_twc_project/{{ module_name }}/settings.py.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,15 @@ INSTALLED_APPS = [
"{{ module_name }}.core",
"{{ module_name }}.users",
# Second Party
"django_q_registry",
"django_simple_nav",
"django_twc_toolbox",
# `django_twc_ui` first to ensure templates have priority
"django_twc_ui",
"django_twc_ui.favicons",
"django_twc_ui.forms",
"django_q_registry",
"django_simple_nav",
"django_twc_toolbox",
"django_twc_toolbox.crud",
"email_relay",
"neapolitan",
# Third Party
"allauth",
"allauth.account",
Expand Down