dev (#2)
Some checks failed
Deploy Production (admin.merchbay.app) / deploy (push) Failing after 36s

Co-authored-by: Frank John Begornia <frank.begornia@yahoo.com>
Reviewed-on: #2
This commit was merged in pull request #2.
This commit is contained in:
2025-12-20 20:04:56 +00:00
parent 382e68769e
commit 4f2a435e2a
11 changed files with 666 additions and 25 deletions

23
.env.server.example Normal file
View File

@@ -0,0 +1,23 @@
# Server .env file for Development Environment
#
# Instructions:
# 1. SSH to your server: ssh webmaster@YOUR_SERVER_IP
# 2. Create directory: mkdir -p /var/www/merchbay_admin_dev
# 3. Create this file: nano /var/www/merchbay_admin_dev/.env
# 4. Copy the content below (fill in YOUR_DB_PASSWORD)
# 5. Save and secure: chmod 600 /var/www/merchbay_admin_dev/.env
APP_ENV=development
APP_DEBUG=true
APP_URL=https://dev-admin.merchbay.app
DB_HOST=mysql
DB_PORT=3306
DB_DATABASE=merchcbay_db
DB_USERNAME=crewapp
DB_PASSWORD=YOUR_DB_PASSWORD_HERE
DOMAIN=dev-admin.merchbay.app
# Notes:
# - DB_HOST=mysql (your MySQL container name on crew-app-net network)
# - Replace YOUR_DB_PASSWORD_HERE with your actual MySQL password
# - This file should NEVER be committed to git