feat: add princess example with Makefile and requirements, plus devranta C project with Makefile and binary
devranta build / Build (push) Failing after 50s

This commit is contained in:
2025-12-28 05:03:20 +00:00
parent c409ec4541
commit f6fe3a5fb8
4 changed files with 52 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# retoor <retoor@molodetz.nl>
.PHONY: all env install run clean
all: env install run
env:
python3 -m venv .venv
install:
. .venv/bin/activate && pip install -r requirements.txt
. .venv/bin/activate && pip install -e ../../.
run:
. .venv/bin/activate && python princess.py
clean:
rm -rf .venv
+3
View File
@@ -0,0 +1,3 @@
# retoor <retoor@molodetz.nl>
python-dotenv
aiosqlite