This commit is contained in:
Jason
2026-04-11 00:04:09 -05:00
commit 7a2fffd62e
110 changed files with 51809 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
# Simple Flask Test App
A minimal 2-page Flask application to test Passenger WSGI deployment.
## Pages
- `/` - Home page (Hello World)
- `/about` - About page
- `/test` - Test page (shows system info)
## Local Testing
```bash
cd app_simple
python app.py
```
Visit: http://localhost:8080/
## Server Deployment
### Upload these files to: `/home/bmdwtjuw/product-finder/`
- `app.py`
- `wsgi.py`
- `templates/home.html`
- `templates/about.html`
### Control Panel Configuration
- **Application startup file:** `wsgi.py`
- **Application Entry point:** `app`
- **Python version:** 3.13.11
### Test URLs (after deployment)
- https://columbiawindows.com/product-finder/
- https://columbiawindows.com/product-finder/about
- https://columbiawindows.com/product-finder/test
## What This Tests
✓ Python 3.13.11 compatibility
✓ Flask framework loading
✓ Template rendering
✓ URL routing
✓ Passenger WSGI configuration
Once this works, you can add back the login/user management features from `app2` folder.