]> Eric's Git Repo - listv4.git/commit
Initial commit
authorEric Wertz <ericwertz@Erics-MacBook-Pro.local>
Fri, 30 May 2025 18:12:21 +0000 (14:12 -0400)
committerEric Wertz <ericwertz@Erics-MacBook-Pro.local>
Fri, 30 May 2025 18:12:21 +0000 (14:12 -0400)
commitadadbef0da7399e45cddc770b6f738d7e98a866d
tree3b1a9df6aec15cd2160a7f222de0596a3f7574c9
Initial commit
58 files changed:
.gitignore [new file with mode: 0644]
Makefile [new file with mode: 0644]
backend/AuthController.cpp [new file with mode: 0644]
backend/AuthController.h [new file with mode: 0644]
backend/Controller.cpp [new file with mode: 0644]
backend/Controller.h [new file with mode: 0644]
backend/DBQuery.cpp [new file with mode: 0644]
backend/DBQuery.h [new file with mode: 0644]
backend/Database.cpp [new file with mode: 0644]
backend/Database.h [new file with mode: 0644]
backend/HTTPExceptions.h [new file with mode: 0644]
backend/HTTPRequest.cpp [new file with mode: 0644]
backend/HTTPRequest.h [new file with mode: 0644]
backend/HTTPRequestRouter.cpp [new file with mode: 0644]
backend/HTTPRequestRouter.h [new file with mode: 0644]
backend/HTTPResponse.cpp [new file with mode: 0644]
backend/HTTPResponse.h [new file with mode: 0644]
backend/JSONResponse.cpp [new file with mode: 0644]
backend/JSONResponse.h [new file with mode: 0644]
backend/ListController.cpp [new file with mode: 0644]
backend/ListController.h [new file with mode: 0644]
backend/StaticFileResponse.cpp [new file with mode: 0644]
backend/StaticFileResponse.h [new file with mode: 0644]
backend/UTCDateTime.cpp [new file with mode: 0644]
backend/UTCDateTime.h [new file with mode: 0644]
backend/User.cpp [new file with mode: 0644]
backend/User.h [new file with mode: 0644]
backend/UserDBSchema.h [new file with mode: 0644]
backend/decrypt.cpp [new file with mode: 0644]
backend/main.cpp [new file with mode: 0644]
backend/sqlite3.c [new file with mode: 0644]
backend/sqlite3.h [new file with mode: 0644]
backend/util.cpp [new file with mode: 0644]
backend/util.h [new file with mode: 0644]
frontend/app/App.tsx [new file with mode: 0644]
frontend/app/AppContext.tsx [new file with mode: 0644]
frontend/app/AppRouter.tsx [new file with mode: 0644]
frontend/app_routes.tsx [new file with mode: 0644]
frontend/components/Icons.tsx [new file with mode: 0644]
frontend/components/ListContext.tsx [new file with mode: 0644]
frontend/components/ListItem.tsx [new file with mode: 0644]
frontend/components/LoadingSpinner.tsx [new file with mode: 0644]
frontend/components/StatusBar.tsx [new file with mode: 0644]
frontend/components/Toolbar.tsx [new file with mode: 0644]
frontend/esbuild.config.js [new file with mode: 0644]
frontend/main.tsx [new file with mode: 0644]
frontend/package-lock.json [new file with mode: 0644]
frontend/package.json [new file with mode: 0644]
frontend/static/index.html [new file with mode: 0644]
frontend/styles.css [new file with mode: 0644]
frontend/tsconfig.json [new file with mode: 0644]
frontend/util/util.tsx [new file with mode: 0644]
frontend/views/Home.tsx [new file with mode: 0644]
frontend/views/List.tsx [new file with mode: 0644]
frontend/views/Login.tsx [new file with mode: 0644]
frontend/views/NotFound.tsx [new file with mode: 0644]
frontend/views/SignUp.tsx [new file with mode: 0644]
watch.sh [new file with mode: 0755]