No description
Find a file
Spirit Pearce (CEO of Cytanix) 794d4ff26a
Some checks failed
Python Type Checking with mypy / type-check-python (push) Has been cancelled
Python Linting with Pylint / lint-python (push) Has been cancelled
Upload everything because fuck you
2025-11-17 10:13:33 +00:00
.gitea/workflows add mypy action config 2025-01-14 12:40:57 +00:00
app Upload everything because fuck you 2025-11-17 10:13:33 +00:00
TNR-Frontend Autoconfig changes, updating angular reqs 2025-02-10 16:03:51 +00:00
utils I can send emails to myself now yay 2025-02-10 16:04:09 +00:00
.gitignore Update gitignore 2025-02-10 14:05:20 +00:00
.pylintrc add pylint config 2025-01-14 11:36:24 +00:00
README.md Add missing - 2025-02-10 14:10:49 +00:00
requirements.txt Fix encoding issue 2025-02-10 14:06:15 +00:00
TO-DO add TO-DO 2025-01-14 14:00:27 +00:00

TO START

pip install -r requirements.txt
uvicorn app.app:api --reload

TO ADD ANOTHER PAGE

go to /app/templates and create a new HTML file, eg index.html Then go to /app/main.py, scroll all the way down and add this to the bottom of the page, changing the necessary information

@app.get("/change_this_to_the_web_path", response_class=HTMLResponse)
async def change_this_to_func_name(request: Request):
    return templates.TemplateResponse("your_new_file.html", {"request": request})
# Please note that everything that you need to change has to be lowercase, everything else stays the same