code style applied to main

This commit is contained in:
pseusys
2023-02-17 15:34:26 +01:00
parent e8a1770feb
commit 8e675eaafd
12 changed files with 442 additions and 473 deletions

View File

@@ -1,6 +1,8 @@
.ONESHELL:
.DEFAULT_GOAL = help
SHELL = /bin/bash
.EXPORT_ALL_VARIABLES:
PATH := venv/bin:$(PATH)
ENV = .env.example
include $(ENV)
@@ -25,6 +27,7 @@ venv:
run-locally: venv
@ # Run action locally
mkdir ./assets/ 2>/dev/null || true
python3 ./sources/main.py
.PHONY: run-locally