You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -51,7 +60,7 @@ cargo build --release # Build the release version for optimized performance
51
60
cargo run -- --api # Run the backend with the API enabled
52
61
53
62
# OR run the compiled binary directly (after building):
54
-
./target/release/password-manager --api
63
+
./target/release/Password_Manager --api
55
64
```
56
65
57
66
The API will be available at `http://127.0.0.1:8080/api` (or `http://localhost:8080/api`).
@@ -106,7 +115,6 @@ if __name__ == "__main__":
106
115
print(remove_password("example.com"))
107
116
print("\n⚠️ Clearing All Data...")
108
117
print(clear_all_data())
109
-
110
118
```
111
119
112
120
**Important:** The Python example assumes the API is running. Make sure you have started the backend as described above. The API endpoints and expected JSON request/response formats should be documented clearly (consider using OpenAPI/Swagger).
0 commit comments