Things to do after creating systemd unit file

Any time we make changes or create from scratch a systemd unit file we need to do a daemon reload to make systemd to pick up that changes:

systemctl daemon-reload
Enable service:
systemctl enable {{ service_name }}
Start the service:
systemctl start {{ service_name }}
Check status:
systemctl status {{ service_name }}