-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(playground): add collaboration (#1717)
* feat(playground): add colloab playground * fix(sql-playground): resolve bugs in playground tabs * fix(playground): remove bugs in result and input tabs * fix(sql-playground): fix input tabs and active database selection * feat(sql-playground): finalize collab * chore(playground): fix kotlin lint errors * fix(sql-parser): fix dockerfile * feat(eat): fix dockerfile
- Loading branch information
Showing
95 changed files
with
4,802 additions
and
1,381 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM node:22-alpine | ||
USER node | ||
COPY --chown=node package.json package-lock.json tsconfig.json /app/ | ||
WORKDIR /app | ||
RUN npm ci | ||
COPY --chown=node src/ src/ | ||
RUN npm run build | ||
CMD ["node", "src/app.js"] |
Oops, something went wrong.