added script path detection

prepare for PyInstaller
This commit is contained in:
SG
2025-06-14 17:37:33 +03:00
parent 0b31079654
commit ed9d1dade2
6 changed files with 20 additions and 23 deletions

30
helpers.py Normal file
View File

@@ -0,0 +1,30 @@
import os, sys, subprocess
import shutil
from pathlib import Path
from classes import *
from config import Config
from logger import logger
def create_content(filename):
filename = Path(f"{Config.CONTENT_DIR}/{filename}.md")
if not filename.exists():
logger.debug(f"Creating new content {filename}")
new_content_item = ContentItem(filename)
new_content_item.create_content()
def edit_content(filename):
logger.debug(f"Editing content {filename}")
editor = os.environ.get('EDITOR', 'vim')
# Create the content file if not exists
if not Path(f"{Config.CONTENT_DIR}/{filename}.md").exists():
create_content(filename)
filename = Path(f"{Config.CONTENT_DIR}/{filename}.md")
subprocess.call([editor, filename])
def init_site():
site = Site()
site.init_site()
def build_site():
site = Site()
site.build()