ELONISEVIL / amfora

1 stars 0 forks source link

Automating the software production process #11

Open ELONISEVIL opened 2 weeks ago

ELONISEVIL commented 2 weeks ago

import os import subprocess

Define the task to automate

def automate_task():

Run a command to build the software

subprocess.run(["make", "build"])

# Run a command to deploy the software
subprocess.run(["make", "deploy"])

Call the automate_task function

automate_task()