Add Coolify deployment guide and rename app to Well Apps#2311
Open
the-ai-buildr wants to merge 1 commit into
Open
Add Coolify deployment guide and rename app to Well Apps#2311the-ai-buildr wants to merge 1 commit into
the-ai-buildr wants to merge 1 commit into
Conversation
- Add compose.coolify.yml: simplified compose without Traefik labels for Coolify's built-in reverse proxy and SSL management - Add docs/coolify-deployment.md: full setup guide covering Coolify install, GitHub App integration, env vars, backups, and monitoring - Rename project from "Full Stack FastAPI Project" to "Well Apps" across .env, page titles, footer, and index.html - Update footer social links to point to the-ai-buildr/well-apps - Update Docker image names to well-apps-backend/well-apps-frontend https://claude.ai/code/session_017P3qDGqPD5Hi2T7fFTwQ2p
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Updates product branding across the frontend and adds Coolify deployment artifacts for running “Well Apps” on a VPS.
Changes:
- Rebrands route titles, app title, and footer text/links from the template name to “Well Apps”
- Adds a Coolify-focused Docker Compose file (
compose.coolify.yml) for deployment - Adds documentation for deploying with Coolify (
docs/coolify-deployment.md) and updates.envdefaults for the new project identity / image names
Reviewed changes
Copilot reviewed 13 out of 13 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| frontend/src/routes/signup.tsx | Updates page title branding |
| frontend/src/routes/reset-password.tsx | Updates page title branding |
| frontend/src/routes/recover-password.tsx | Updates page title branding |
| frontend/src/routes/login.tsx | Updates page title branding |
| frontend/src/routes/_layout/settings.tsx | Updates page title branding |
| frontend/src/routes/_layout/items.tsx | Updates page title branding |
| frontend/src/routes/_layout/index.tsx | Updates page title branding |
| frontend/src/routes/_layout/admin.tsx | Updates page title branding |
| frontend/src/components/Common/Footer.tsx | Updates footer branding and GitHub link; removes other social links |
| frontend/index.html | Updates HTML document title branding |
| docs/coolify-deployment.md | Adds Coolify deployment guide and environment variable guidance |
| compose.coolify.yml | Adds Coolify-oriented compose stack (db, prestart, backend, frontend) |
| .env | Updates local defaults for project/stack name and docker image names |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+84
to
+85
| ports: | ||
| - "8000:8000" |
Comment on lines
+96
to
+97
| ports: | ||
| - "80:80" |
| | | ||
| ├── dashboard.yourdomain.com → frontend (Nginx, port 80) | ||
| ├── api.yourdomain.com → backend (FastAPI, port 8000) | ||
| └── (internal only) → db (PostgreSQL 18) |
Comment on lines
+163
to
+165
| | `DOMAIN` | `yourdomain.com` | Your root domain | | ||
| | `ENVIRONMENT` | `production` | `staging` or `production` | | ||
| | `FRONTEND_HOST` | `https://dashboard.yourdomain.com` | Full URL to the frontend | |
Comment on lines
+30
to
+47
| environment: | ||
| - DOMAIN=${DOMAIN} | ||
| - FRONTEND_HOST=${FRONTEND_HOST} | ||
| - ENVIRONMENT=${ENVIRONMENT} | ||
| - BACKEND_CORS_ORIGINS=${BACKEND_CORS_ORIGINS} | ||
| - SECRET_KEY=${SECRET_KEY} | ||
| - FIRST_SUPERUSER=${FIRST_SUPERUSER} | ||
| - FIRST_SUPERUSER_PASSWORD=${FIRST_SUPERUSER_PASSWORD} | ||
| - SMTP_HOST=${SMTP_HOST} | ||
| - SMTP_USER=${SMTP_USER} | ||
| - SMTP_PASSWORD=${SMTP_PASSWORD} | ||
| - EMAILS_FROM_EMAIL=${EMAILS_FROM_EMAIL} | ||
| - POSTGRES_SERVER=db | ||
| - POSTGRES_PORT=${POSTGRES_PORT:-5432} | ||
| - POSTGRES_DB=${POSTGRES_DB} | ||
| - POSTGRES_USER=${POSTGRES_USER} | ||
| - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} | ||
| - SENTRY_DSN=${SENTRY_DSN} |
Comment on lines
+58
to
+75
| environment: | ||
| - DOMAIN=${DOMAIN} | ||
| - FRONTEND_HOST=${FRONTEND_HOST} | ||
| - ENVIRONMENT=${ENVIRONMENT} | ||
| - BACKEND_CORS_ORIGINS=${BACKEND_CORS_ORIGINS} | ||
| - SECRET_KEY=${SECRET_KEY} | ||
| - FIRST_SUPERUSER=${FIRST_SUPERUSER} | ||
| - FIRST_SUPERUSER_PASSWORD=${FIRST_SUPERUSER_PASSWORD} | ||
| - SMTP_HOST=${SMTP_HOST} | ||
| - SMTP_USER=${SMTP_USER} | ||
| - SMTP_PASSWORD=${SMTP_PASSWORD} | ||
| - EMAILS_FROM_EMAIL=${EMAILS_FROM_EMAIL} | ||
| - POSTGRES_SERVER=db | ||
| - POSTGRES_PORT=${POSTGRES_PORT:-5432} | ||
| - POSTGRES_DB=${POSTGRES_DB} | ||
| - POSTGRES_USER=${POSTGRES_USER} | ||
| - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} | ||
| - SENTRY_DSN=${SENTRY_DSN} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
https://claude.ai/code/session_017P3qDGqPD5Hi2T7fFTwQ2p
Pull Request
Discussion:
Description
AI Disclaimer
AI transcript
Checklist