The last lab is pure cancer

hints and explanations are garbage, im just about done



service wont start, says it doesnt exist. just read the damn log tell me whats wrong.
what the hell is up with the timer, i ran out of time and gotta start this crap from scratch now

Hello @dorin1
Please follow those steps to complete the task
$ cd /etc/systemd/system
$ vi mercury.service

[Unit]
Description=Project Mercury Web Application

[Service]
ExecStart=/usr/bin/python3 manage.py runserver 0.0.0.0:8000
Restart=on-failure
WorkingDirectory=/opt/caleston-code/mercuryProject
User=mercury

[Install]
WantedBy=multi-user.target
$ sudo systemctl enable mercury.service
$ sudo systemctl start mercury.service

Hope this helps!