I want to use systemctl to run a service which triggers Django webserver but the problem is django has to create a debug.log file but its not doing it when i run it from systemctl but on a local trigger as
```
python manage.py runserver
```
i'm able to see django creates debug.log file, could someone help me with the permissions of systemctl
Sharing the systemctl process which i used
```
[Unit]
Description= django_server
After=syslog.target network-online.target
[Service]
Type=simple
ExecStart=/home/pi/miniconda3/bin/python /home/pi/github/Bitcope/manage.py runserver
Restart=on-failure
RestartSec=5
[Install]
```
[link] [comments]
SOCIAL SHARE CARD GENERATOR