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

Update supported languages list in docs to include Node.js Javascript #155

Merged
merged 2 commits into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 3 additions & 2 deletions docs/judge/supported_languages.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ Ada, Assembly (x64/x86), AWK, Brain\*\*\*\*,
C (Clang/GCC), C#, C++14 (Clang/GCC),
C++03/11/17/20, C11, COBOL, D, Dart, F#, Forth,
Fortran, Go, Groovy, Haskell, INTERCAL,
Java 8/latest, Kotlin, Lean 4, Lisp, LLVM IR, Lua, NASM,
Java 8/latest, JavaScript (Node.js and V8),
Kotlin, Lean 4, Lisp, LLVM IR, Lua, NASM,
NASM64, OCaml, Pascal, Perl, PHP, Pike, Prolog,
PyPy 2/3, Python 2/3, Racket, Ruby, Rust, Scala,
Scheme, Sed, Swift, TCL, Text, Turing,
V8 JavaScript, Visual Basic, Zig.
Visual Basic, Zig.
All these languages are tested in production on the [DMOJ](https://dmoj.ca/).

As it stands, some languages are used more than others in the scope of competitive programming, so some executors have
Expand Down
4 changes: 4 additions & 0 deletions docs/site/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,10 @@ Next, load some initial data so that your install is not entirely blank.
(dmojsite) $ python3 manage.py loaddata navbar
(dmojsite) $ python3 manage.py loaddata language_small
(dmojsite) $ python3 manage.py loaddata demo

# If you want more languages and are running the runtimes-tier3
# version of the Docker image, load them with:
(dmojsite) $ python3 manage.py loaddata language_all
```

!> Keep in mind that the `demo` fixture creates a superuser account with a username and password of `admin`. If your
Expand Down