major changes, including tailwind v4

This commit is contained in:
pacnpal
2025-08-15 12:24:20 -04:00
parent f6c8e0e25c
commit da7c7e3381
261 changed files with 22783 additions and 10465 deletions

View File

@@ -0,0 +1,31 @@
# Parks Consolidation Cleanup Report
This report details the cleanup process following the consolidation of the `operators` and `property_owners` apps into the `parks` app.
## 1. Removed App Directories
The following app directories were removed:
- `operators/`
- `property_owners/`
## 2. Removed Apps from INSTALLED_APPS
The `operators` and `property_owners` apps were removed from the `INSTALLED_APPS` setting in `thrillwiki/settings.py`.
## 3. Cleaned Up Migrations
All migration files were deleted from all apps and recreated to ensure a clean slate. This was done to resolve dependencies on the old `operators` and `property_owners` apps.
## 4. Reset Database
The database was reset to ensure all old data and schemas were removed. The following commands were run:
```bash
uv run manage.py migrate --fake parks zero
uv run manage.py migrate
```
## 5. Verification
The codebase was searched for any remaining references to `operators` and `property_owners`. All remaining references in templates and documentation were removed.