19 lines
387 B
JavaScript
19 lines
387 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: 'pharmacy-flask',
|
|
script: 'python',
|
|
args: 'app.py',
|
|
cwd: 'c:\\Users\\청춘약국\\source\\pharmacy-pos-qr-system\\backend',
|
|
interpreter: 'none',
|
|
watch: false,
|
|
autorestart: true,
|
|
max_restarts: 10,
|
|
env: {
|
|
FLASK_ENV: 'production',
|
|
PYTHONIOENCODING: 'utf-8'
|
|
}
|
|
}
|
|
]
|
|
};
|