I'm trying to use GitLab CI/CD feature with my Django project. Is it possible to run this Django project with GitLab runner without Docker so after every git push server is started again? At this moment server is running but after git push it is not restarted but it creates new job instance again.
I have tried to make some basic .gitlab-ci.yml file but after I push updates to master the job is running and never ending. I can reach the server website but when I want to update something else to master new job is created and the previous does not automatically end.
script:
- python3.6 manage.py runserver --noreload 0.0.0.0:8001 >/dev/null
I think this line where I'm trying to runserver is most likely wrong.