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

Vingo is now written in rust 🎉 #68

Merged
merged 31 commits into from
Sep 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
314f12f
vingo: yeet and rust login flow
hannes-dev Aug 28, 2024
d39ca50
vingo: nest routes under /api
hannes-dev Aug 28, 2024
53a55ea
vingo: cleanup
hannes-dev Aug 28, 2024
4fe0731
vingo: add database to state
hannes-dev Aug 28, 2024
40718f1
vingo: add seaorm and user table
hannes-dev Aug 29, 2024
f3a09fc
vingo: start error handling
hannes-dev Aug 29, 2024
944d4fa
vingo: add error handling and error messages
hannes-dev Aug 29, 2024
74412ce
vingo: add card table
hannes-dev Aug 30, 2024
740cca4
vingo: add card endpoints
hannes-dev Aug 30, 2024
def603a
vingo: add card registering
hannes-dev Sep 3, 2024
9320ec1
vinvoor: fix cookie name
hannes-dev Sep 3, 2024
5bca63a
vingo: add scans endpoints
hannes-dev Sep 3, 2024
a48d7dd
vinvoor: json snake_case
Topvennie Sep 3, 2024
26406c1
vinvoor: more snake_case
Topvennie Sep 3, 2024
6feee28
vingo: fix docker for backend
hannes-dev Sep 3, 2024
ebd31a0
vingo: add cardstatus endpoint
hannes-dev Sep 3, 2024
95aa632
vinvoor: sssssssnake case
Topvennie Sep 4, 2024
3a8f55a
vingo: add leaderboard
hannes-dev Sep 6, 2024
9af7d17
vingo: cors
Topvennie Sep 9, 2024
4615dfd
vinvoor: background foundation
Topvennie Sep 9, 2024
bf2d817
vingo: add logged in check
hannes-dev Sep 9, 2024
1b1e15a
vingo: add admin routes
hannes-dev Sep 9, 2024
1d87dff
vingo: check if scan is hex
hannes-dev Sep 9, 2024
c88ee4f
vingo: add days
hannes-dev Sep 9, 2024
763e139
vingo: add day endpoints
hannes-dev Sep 9, 2024
1c6dba4
vingo: add seasons and cleanup entities
hannes-dev Sep 9, 2024
85dd558
vingo: add season endpoints
hannes-dev Sep 9, 2024
09af9cd
vinvoor: move user to tanstack query
Topvennie Sep 10, 2024
ab8bc90
vinvoor: better error handling
Topvennie Sep 10, 2024
17e6713
vingo: logout is post
hannes-dev Sep 10, 2024
db543f8
vinvoor: remove unused import
Topvennie Sep 10, 2024
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
8 changes: 4 additions & 4 deletions dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ done
# Build the docker containers if clean flag is set

if [ "$clean" = true ]; then
rm vingo/.env || true
# rm vingo/.env || true
rm vinvoor/.env || true
docker compose -f docker-compose.yml build
fi


# Check for the required files

if [ ! -f vingo/.env ]; then
cp vingo/dev.env vingo/.env
fi
#if [ ! -f vingo/.env ]; then
# cp vingo/dev.env vingo/.env
#fi
if [ ! -f vinvoor/.env ]; then
cp vinvoor/dev.env vinvoor/.env
fi
Expand Down
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ services:
- 4000:4000
volumes:
- ./vingo:/backend
- backend-packages:/go/pkg/mod
extra_hosts:
- "host.docker.internal:host-gateway"
depends_on:
Expand Down
51 changes: 0 additions & 51 deletions vingo/.air.toml

This file was deleted.

7 changes: 5 additions & 2 deletions vingo/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
.env
tmp/
debug/
target/

**/*.rs.bk
*.pdb
2 changes: 1 addition & 1 deletion vingo/.tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
golang 1.22.1
rust 1.80.1
Loading
Loading