You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
447 B
Plaintext
21 lines
447 B
Plaintext
[Unit]
|
|
Description=AI Orquestrador Admin Runtime
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=vitor
|
|
Group=vitor
|
|
WorkingDirectory=/opt/orquestrador
|
|
EnvironmentFile=/opt/orquestrador/.env.admin
|
|
Environment=PATH=/opt/orquestrador/venv/bin
|
|
ExecStart=/opt/orquestrador/venv/bin/python -m uvicorn admin_app.main:app --host 127.0.0.1 --port 8081
|
|
Restart=always
|
|
RestartSec=5
|
|
|
|
NoNewPrivileges=true
|
|
PrivateTmp=true
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|