1
0
mirror of https://git.tuxpa.in/a/code-server.git synced 2025-01-01 14:58:45 +00:00
code-server-2/scripts/code-server.sh
Asher b8fa7da972
Simplify frontend
Just a login form and a list of applications. No modals or anything like
that.
2020-02-13 20:10:14 -06:00

10 lines
176 B
Bash
Executable File

#!/usr/bin/env bash
# code-server.sh -- Run code-server with the bundled Node binary.
main() {
cd "$(dirname "$0")" || exit 1
./node ./out/node/entry.js "$@"
}
main "$@"