Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

root v2 at this point #38

Merged
merged 38 commits into from
Jan 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
e6224dd
remove soon-to-be outdated information in readme
ivinjabraham Jan 12, 2025
4f4ee27
remove shuttle dependency
ivinjabraham Jan 12, 2025
3c01c3a
reduce codebase to basic working web server template
ivinjabraham Jan 12, 2025
c3c58d1
remove migrations
ivinjabraham Jan 12, 2025
4f12588
add database backup to gitignore
ivinjabraham Jan 14, 2025
cec9d58
remove unused state from router
ivinjabraham Jan 14, 2025
d09e6a5
ignore .env files
ivinjabraham Jan 14, 2025
ec44d94
add migration to create initial tables for member, streaks and attend…
ivinjabraham Jan 14, 2025
bd5cd88
remove shuttle workflows
ivinjabraham Jan 14, 2025
522ded8
rename db module to models in order to better reflect its contents
ivinjabraham Jan 15, 2025
a16c83b
add graphql interface back to the server
ivinjabraham Jan 15, 2025
e8d341a
minor refinements to loading env variables, db pool configuration and…
ivinjabraham Jan 15, 2025
e7f43c7
uncomment scheduled task
ivinjabraham Jan 15, 2025
7ca67ea
rename scheduled_task to daily_task
ivinjabraham Jan 15, 2025
b3f1842
rename reference to db module to models, was left out earlier
ivinjabraham Jan 15, 2025
6201d06
use kolkata timezone instead of local time
ivinjabraham Jan 15, 2025
0ba8c00
rewrite midnight attendance records insertion and required models
ivinjabraham Jan 15, 2025
86ec4e0
rewrite attendance record insertion and updation logic
ivinjabraham Jan 15, 2025
7a9a6ee
remove leaderboard and active projects feature
ivinjabraham Jan 15, 2025
867ac2d
documentation changes and additions
ivinjabraham Jan 15, 2025
7762c85
ignore .log files
ivinjabraham Jan 17, 2025
3518e18
rewrite graphql interface
ivinjabraham Jan 17, 2025
ba21373
remove tests
ivinjabraham Jan 17, 2025
e6657da
add re-exports for less verbose imports
ivinjabraham Jan 17, 2025
76ac325
add BIND_ADDRESS env variable to avoid hardcoding address
ivinjabraham Jan 17, 2025
3ba685d
improve documentation in main.rs
ivinjabraham Jan 17, 2025
e2207f7
refactor main.rs to be more high-level by abstracing away its processes
ivinjabraham Jan 17, 2025
2d3c497
rename endpoints for more clarity
ivinjabraham Jan 17, 2025
3be56a5
complete todo to handle error when failing to fetch members
ivinjabraham Jan 17, 2025
3512e6c
add documentation to models
ivinjabraham Jan 17, 2025
127cb5e
fix graphiql missing graphql schema
ivinjabraham Jan 17, 2025
ffd6879
update documentation for root
ivinjabraham Jan 17, 2025
173b39c
add reset streak mutation
ivinjabraham Jan 17, 2025
7a804dc
add hmac verification to mark attendance
ivinjabraham Jan 17, 2025
8690495
remove shuttle workaround in main.rs
ivinjabraham Jan 17, 2025
7655247
fix incorrect query in mark attendance and remove time fields from it…
ivinjabraham Jan 24, 2025
356e508
run cargo fmt
ivinjabraham Jan 24, 2025
b234700
add projects feature
ivinjabraham Jan 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 0 additions & 38 deletions .github/workflows/deploy.yml

This file was deleted.

17 changes: 0 additions & 17 deletions .github/workflows/shuttle-run.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/target
.shuttle-storage
Secrets*.toml

backups/
.env
*.log
Loading