8 lines
188 B
Bash
8 lines
188 B
Bash
#!/bin/bash
|
|
|
|
# Pull the latest changes from the repository
|
|
git pull https://gitlab.fire-devils.org/ManuelW/MikaList.git
|
|
|
|
# Start the Flask application
|
|
flask run --host=0.0.0.0 --port=3004
|