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

feat(api-server): invite update #12

Open
wants to merge 28 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
90e81ac
feat(api-server): invite update
shine00chang Feb 11, 2024
f344ea2
(wip) admin
shine00chang Sep 25, 2024
1681f5e
(wip) client
shine00chang Sep 28, 2024
4cf00b4
(wip) judger
Oct 1, 2024
3e2878b
(add) API return name + UI validations
shine00chang Oct 2, 2024
a0ebad9
(add) polygon upload session
shine00chang Oct 5, 2024
236db53
(add) polygon checker
shine00chang Oct 7, 2024
0fde003
(fix) ranklist
shine00chang Oct 14, 2024
b9b7c32
(fix) result processing
shine00chang Oct 14, 2024
980ea46
(add) upload & latex
shine00chang Oct 14, 2024
f0134b4
(wip) client & api fixes
shine00chang Oct 25, 2024
fec7baa
(fix) problem formatting
shine00chang Nov 24, 2024
d3d1c39
(fix) testcase list
shine00chang Nov 24, 2024
0c958ab
(add) persistent tab
shine00chang Nov 24, 2024
67aba37
(add) submission details rework
shine00chang Nov 25, 2024
24541df
Update contest.html
Keys9873 Nov 25, 2024
0c3d023
PR #5 from Keys9873/main
shine00chang Nov 25, 2024
3b7dab8
(add) problem notes
shine00chang Nov 26, 2024
01e9754
(add+fix) add ac-only grading, verdict reporting fix
shine00chang Dec 2, 2024
5c1eeb4
(add) samples
shine00chang Dec 6, 2024
7365485
(add+fix) fix client permission response & add favicon
shine00chang Dec 8, 2024
a7090b6
(refactor+fix) remove domain problem abstraction + fix permissions
shine00chang Dec 8, 2024
97ac745
(add) testers
shine00chang Dec 18, 2024
94d9e46
(fix) remove series + small fixes
shine00chang Dec 19, 2024
a91087b
(add) rejudge & penalties
shine00chang Dec 19, 2024
1ff7042
(add) hide submissions, add logs
shine00chang Dec 27, 2024
66fe912
(add+fix) participant query, fixed ranklist queries
shine00chang Dec 30, 2024
6cc4c94
(add) graduation month
shine00chang Jan 1, 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
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/node_modules
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@ node_modules
.env
.DS_Store
replica.key
deploy/dev
!deploy/dev/docker-compose.yml
set-env.sh
**/log.txt
7 changes: 2 additions & 5 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
compressionLevel: mixed
nodeLinker: node-modules

npmPublishAccess: public

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"
enableGlobalCache: false
26 changes: 26 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
FROM --platform=linux/arm64 node:22

WORKDIR /opt

COPY ./ ./argon

RUN apt-get update
RUN apt-get install -y git
RUN apt-get install -y libcap-dev
RUN apt-get install -y libsystemd-dev
RUN apt-get install -y gcc
RUN apt-get install -y make
RUN apt-get install -y vim

RUN git clone https://github.com/ioi/isolate.git

WORKDIR /opt/isolate

RUN make isolate
RUN make install

WORKDIR /opt/argon

RUN yarn

WORKDIR /opt/argon/packages/judge-daemon
2 changes: 1 addition & 1 deletion deploy/dev/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- 27017:27017
volumes:
- mongodb:/data/db
- ./replica.key:/data/replica.key
- ./key:/data/replica.key
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: password
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"packageManager": "yarn@3.3.0",
"packageManager": "yarn@4.5.0",
"dependencies": {
"@lljj/vue3-form-naive": "^1.19.1"
},
Expand Down
Loading