first test

This commit is contained in:
2026-01-03 11:28:21 -05:00
commit e52f8750b8
6 changed files with 152 additions and 0 deletions

12
supervisor/backend.conf Normal file
View File

@@ -0,0 +1,12 @@
[program:backend]
priority=5
directory=/app/code/backend
environment=HOME=/app/code
command=uv run python main.py
user=cloudron
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0

12
supervisor/frontend.conf Normal file
View File

@@ -0,0 +1,12 @@
[program:backend]
priority=5
directory=/app/code/frontend
environment=HOME=/app/code
command=npm run prod
user=cloudron
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0