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

Basic telerunbot features #2

Merged
merged 27 commits into from
Aug 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
1528ec2
init shuttle deploy
reubenwong97 Aug 18, 2023
ed3b0fe
custom service deploy
reubenwong97 Aug 18, 2023
4baf59e
add sqlx dependency
reubenwong97 Aug 18, 2023
3c8b524
update gitignore
reubenwong97 Aug 18, 2023
25e5ddf
untrack cargo.lock
reubenwong97 Aug 18, 2023
c96a1c8
init repo structure
reubenwong97 Aug 19, 2023
6733e98
untrack .vscode
reubenwong97 Aug 19, 2023
9eee69c
skeleton bot code
reubenwong97 Aug 19, 2023
780a713
correct sql code
reubenwong97 Aug 19, 2023
34cc702
alter column type
reubenwong97 Aug 19, 2023
b2e61d6
more amends
reubenwong97 Aug 19, 2023
6474433
use query_as macro
reubenwong97 Aug 19, 2023
ed730e4
check sqlx into git
reubenwong97 Aug 19, 2023
2fdf141
convert queries to macros
reubenwong97 Aug 19, 2023
a968f4f
complete database operations
reubenwong97 Aug 20, 2023
97d4398
add timestamp column
reubenwong97 Aug 20, 2023
3819050
add list interface
reubenwong97 Aug 20, 2023
59496ce
init template; TODO add user tally mapping
reubenwong97 Aug 20, 2023
864b2ef
cleanup display implementation
reubenwong97 Aug 21, 2023
b83cc3e
render run template
reubenwong97 Aug 21, 2023
6f19bc9
basic tests
reubenwong97 Aug 22, 2023
9108778
use linkers for macos
reubenwong97 Aug 22, 2023
b757535
change lengthy result type to type alias
reubenwong97 Aug 23, 2023
4c08f32
basic functionality added
reubenwong97 Aug 25, 2023
7044827
regenerate sqlx
reubenwong97 Aug 25, 2023
ed31350
fix clippy
reubenwong97 Aug 25, 2023
9ba9475
use tracing instead of env logger
reubenwong97 Aug 25, 2023
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
6 changes: 6 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# On MacOS, `brew install michaeleisel/zld/zld`
[target.x86_64-apple-darwin]
rustflags = ["-C", "link-arg=-fuse-ld=lld"]

[target.aarch64-apple-darwin]
rustflags = ["-C", "link-arg=-fuse-ld=lld"]
19 changes: 17 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
/target
.env
# Generated by Cargo
# will have compiled files and executables
debug/
target/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
.env
.vscode/
Secrets.toml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading