* Update weapon series migration This update fixes MigrateWeaponSeries from 20250218 such that it can be run on an empty database without throwing errors. * Update .gitignore Hide backups and logs directories, since we’ll be storing these in the project folder. Also hide mise’s .local directory. * Change NewRelic log directory Moved from log/ to logs/ * Add rake task for backing up/restoring prod db * Rubocop fixes * Fix error where :preview_state didn’t have an attribute * Add supervisord ini This uses my local paths, so we should try to abstract that away later. * Ignore mise.toml
17 lines
638 B
INI
17 lines
638 B
INI
[program:hensei-api]
|
|
command=/opt/homebrew/bin/mise run s
|
|
process_name=%(program_name)s
|
|
numprocs=1
|
|
directory=/Users/justin/Developer/Granblue/hensei-api
|
|
environment=HOME="/Users/justin",MISE_CONFIG_ROOT="/Users/justin/Developer/Granblue/hensei-api",RAILS_ENV="development"
|
|
autostart=true
|
|
autorestart=unexpected
|
|
stopsignal=TERM
|
|
user=justin
|
|
stdout_logfile=/Users/justin/Developer/Granblue/hensei-api/logs/hensei-api.stdout.log
|
|
stdout_logfile_maxbytes=500KB
|
|
stdout_logfile_backups=10
|
|
stderr_logfile=/Users/justin/Developer/Granblue/hensei-api/logs/hensei-api.stderr.log
|
|
stderr_logfile_maxbytes=500KB
|
|
stderr_logfile_backups=10
|
|
serverurl=AUTO
|