1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/hedgedoc_ynh.git synced 2024-09-03 19:25:52 +02:00
hedgedoc_ynh/conf/frontend.service
tituspijean 23819b78d5 Initial work on HedgeDoc v2
- Project split into backend and frontend
- Relevant services and configuration files created

Status:
- can be cleanly installed and removed.
- services start but the frontend gets caught in the SSO somewhere
2021-06-20 23:36:24 +02:00

27 lines
852 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=__FINALPATH__/frontend
Environment="PATH=__ENV_PATH__"
Environment="NODE_ENV=production"
Environment="PORT=__PORT_FRONTEND__"
Environment="REACT_APP_BACKEND_BASE_URL=http://localhost:__PORT_BACKEND__/"
ExecStart=__FINALPATH__/frontend/node_modules/.bin/cross-env PORT=__PORT_FRONTEND__ REACT_APP_BACKEND_BASE_URL=http://localhost:__PORT_BACKEND__/ __FINAL_PATH__/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