ghost-blog

Run Ghost blog locally with python script

Run Ghost blog locally with python script Question: I have installed ghost blog locally on Windows 10. To run ghost, I run the following the commands manually on Windows prompt; $ C:UsersjohnKDropboxjkghost $ ghost start I want to automate this with a Python script. This is how my Python script looks. import os os.system(r"C:UsersjohnKDropboxjkghost") os.system("ghost …

Total answers: 1