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

Rust service #87

Draft
wants to merge 32 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
fcc740e
rust experiments
encody May 18, 2022
17d6f5b
trying with tokio::spawn services instead
encody May 19, 2022
f3e6340
badge registry working
encody May 20, 2022
68a9862
fmt
encody May 20, 2022
c604fd9
controlled semaphore + connections struct
encody May 20, 2022
8f5bd57
badge worker macro
encody May 20, 2022
8bc49a2
rename updater -> local
encody May 20, 2022
e864c20
consecutive errors
encody May 20, 2022
957de2c
account update cooldown
encody May 20, 2022
ca65d87
multithreaded local updater
encody May 20, 2022
550d1b0
vscode extensions
encody May 21, 2022
7c03bbf
syntax highlighting for inline sql w/ extension
encody May 21, 2022
e24691c
badge db functions + use Uuid type instead of &'static str for badge id
encody May 23, 2022
c698191
badge exclusion
encody May 23, 2022
bc6bfe0
removes fk restraint so badges can be added before normal acct update…
encody May 23, 2022
251b97e
badge updater working
encody May 23, 2022
a46e07b
move constants to main.rs
encody May 23, 2022
4288e1f
sharing w/ Arc instead of cloning + move max simul acct semaphore up …
encody May 24, 2022
5876056
reorg, fmt, rename
encody May 24, 2022
658f73f
move constant to env var
encody May 24, 2022
011c597
replace rust-analyzer with new identifier in extension recommendations
encody May 24, 2022
c8c36bb
Merge branch 'feature/rust-service' of github.com:NEAR-Edu/stats.gall…
encody May 24, 2022
24299c8
adds logging
encody May 24, 2022
48c4593
removes some unwrap() calls
encody May 24, 2022
b63a381
adds update size config option
encody May 24, 2022
0e13d69
clippy suggestions
encody May 26, 2022
578888a
merge clippy changes
encody May 26, 2022
4d5311f
revamped scoring
encody Jun 2, 2022
b2c3338
fmt + fix
encody Jun 2, 2022
64a4b08
rust api server initial commit
encody Jun 3, 2022
2b7ce8b
server
encody Jun 7, 2022
d8957d2
upgrades libraries and solves seaorm column enum issue
encody Aug 9, 2022
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
.DS_Store
node_modules
/dist
target


# local env files
.env
.env.local
.env.*.local

Expand Down
12 changes: 12 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"recommendations": [
"qufiwefefwoyn.inline-sql-syntax",
"mikestead.dotenv",
"esbenp.prettier-vscode",
"bradlc.vscode-tailwindcss",
"netcorext.uuid-generator",
"octref.vetur",
"bungcip.better-toml",
"rust-lang.rust-analyzer"
]
}
Loading