Moved backend code into its own subfolder

This commit is contained in:
rzuasti
2026-02-10 14:03:33 -05:00
parent a86efc015a
commit 39a58983d6
17 changed files with 3 additions and 2 deletions
+1
View File
@@ -1,4 +1,5 @@
/target /target
/backend/target
/result /result
oott.db oott.db
oott.toml oott.toml
View File
View File
View File
View File
+2 -2
View File
@@ -2,9 +2,9 @@
pkgs.rustPlatform.buildRustPackage rec { pkgs.rustPlatform.buildRustPackage rec {
pname = "oott"; pname = "oott";
version = "0.0.1"; version = "0.0.1";
src = ./..; src = ./../backend;
cargoLock = { cargoLock = {
lockFile = ./../Cargo.lock; lockFile = ./../backend/Cargo.lock;
}; };
nativeBuildInputs = [pkgs.pkg-config]; nativeBuildInputs = [pkgs.pkg-config];