From cd3d0f4ad829cd7607f200be0dfda1f9375d47cc Mon Sep 17 00:00:00 2001 From: Josh LaCount Date: Sat, 16 May 2026 19:50:14 -0400 Subject: [PATCH] backend init --- .gitignore | 2 ++ README.md | 2 ++ backend/.python-version | 1 + backend/README.md | 0 backend/main.py | 6 ++++++ backend/pyproject.toml | 7 +++++++ 6 files changed, 18 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 backend/.python-version create mode 100644 backend/README.md create mode 100644 backend/main.py create mode 100644 backend/pyproject.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c61f6af --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +__pycache__/ +.env diff --git a/README.md b/README.md new file mode 100644 index 0000000..29c0d48 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Beat Saber Map Finder +Find Beat Saber maps for songs you like diff --git a/backend/.python-version b/backend/.python-version new file mode 100644 index 0000000..6324d40 --- /dev/null +++ b/backend/.python-version @@ -0,0 +1 @@ +3.14 diff --git a/backend/README.md b/backend/README.md new file mode 100644 index 0000000..e69de29 diff --git a/backend/main.py b/backend/main.py new file mode 100644 index 0000000..997a4ad --- /dev/null +++ b/backend/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from backend!") + + +if __name__ == "__main__": + main() diff --git a/backend/pyproject.toml b/backend/pyproject.toml new file mode 100644 index 0000000..bcef557 --- /dev/null +++ b/backend/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "bsmf-backend" +version = "0.1.0" +description = "Backend server for Beat Saber Map Finder" +readme = "README.md" +requires-python = ">=3.14" +dependencies = []