mirror of
https://github.com/YunoHost-Apps/hedgedoc_ynh.git
synced 2024-09-03 19:25:52 +02:00
27 lines
862 B
Desktop File
27 lines
862 B
Desktop File
[Unit]
|
|
Description=HedgeDoc: collaborative Markdown notes frontend
|
|
Documentation=https://github.com/hedgedoc/hedgedoc
|
|
After=network.target postgresql.service __APP___backend.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=__APP__
|
|
Group=__APP__
|
|
WorkingDirectory=__INSTALL_DIR__/frontend
|
|
Environment="__YNH_NODE_LOAD_PATH__"
|
|
Environment="NODE_ENV=production"
|
|
Environment="PORT=__PORT_FRONTEND__"
|
|
Environment="REACT_APP_BACKEND_BASE_URL=http://localhost:__PORT_BACKEND__/"
|
|
ExecStart=__INSTALL_DIR__/frontend/node_modules/.bin/cross-env PORT=__PORT_FRONTEND__ REACT_APP_BACKEND_BASE_URL=http://localhost:__PORT_BACKEND__/ __INSTALL_DIR__/frontend/node_modules/.bin/craco start
|
|
Restart=always
|
|
PrivateTmp=true
|
|
PrivateDevices=true
|
|
|
|
ProtectControlGroups=true
|
|
ProtectHome=true
|
|
ProtectKernelTunables=true
|
|
ProtectSystem=full
|
|
RestrictSUIDSGID=true
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|