mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 01:17:42 +01:00
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
import logging
|
|
|
|
from cbpi.craftbeerpi import CraftBeerPi
|
|
import os
|
|
import pathlib
|
|
import shutil
|
|
|
|
logging.basicConfig(level=logging.INFO,filename='./logs/app.log', filemode='a', format='%(asctime)s - %(levelname)s - %(name)s - %(message)s')
|
|
|
|
def create_plugin_file():
|
|
import os.path
|
|
if os.path.exists(os.path.join(".", 'config', "plugin_list.txt")) is False:
|
|
srcfile = os.path.join(os.path.dirname(__file__), "config", "plugin_list.txt")
|
|
destfile = os.path.join(".", 'config')
|
|
shutil.copy(srcfile, destfile)
|
|
|
|
def create_config_file():
|
|
import os.path
|
|
if os.path.exists(os.path.join(".", 'config', "config.yaml")) is False:
|
|
srcfile = os.path.join(os.path.dirname(__file__), "config", "config.yaml")
|
|
destfile = os.path.join(".", 'config')
|
|
shutil.copy(srcfile, destfile)
|
|
|
|
def create_home_folder_structure():
|
|
pathlib.Path(os.path.join(".", 'logs/sensors')).mkdir(parents=True, exist_ok=True)
|
|
pathlib.Path(os.path.join(".", 'config')).mkdir(parents=True, exist_ok=True)
|
|
|
|
|
|
def main():
|
|
#import sys
|
|
#arg1, arg2 = sys.argv[1], sys.argv[2]
|
|
|
|
create_home_folder_structure()
|
|
create_plugin_file()
|
|
create_config_file()
|
|
|
|
|
|
cbpi = CraftBeerPi()
|
|
cbpi.start()
|
|
|
|
|
|
|