mirror of
https://github.com/get-drexa/drive.git
synced 2026-02-02 13:11:18 +00:00
feat(backend): return list of orgs in login resp
This commit is contained in:
@@ -14,13 +14,6 @@ RUN curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linu
|
||||
&& ln -s /opt/nvim-linux-x86_64/bin/nvim /usr/local/bin/nvim \
|
||||
&& rm nvim-linux-x86_64.tar.gz
|
||||
|
||||
# Install lazygit
|
||||
RUN LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygit/releases/latest" | grep -Po '"tag_name": "v\K[^"]*') \
|
||||
&& curl -Lo lazygit.tar.gz "https://github.com/jesseduffield/lazygit/releases/latest/download/lazygit_${LAZYGIT_VERSION}_Linux_x86_64.tar.gz" \
|
||||
&& tar xf lazygit.tar.gz lazygit \
|
||||
&& install lazygit /usr/local/bin \
|
||||
&& rm lazygit.tar.gz lazygit
|
||||
|
||||
# Install Bun as the node user
|
||||
USER node
|
||||
RUN curl -fsSL https://bun.sh/install | bash
|
||||
|
||||
@@ -15,7 +15,6 @@
|
||||
"golangciLintVersion": "2.6.1"
|
||||
}
|
||||
},
|
||||
"postCreateCommand": "./scripts/setup-git.sh",
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
@@ -97,6 +96,8 @@
|
||||
}
|
||||
},
|
||||
"forwardPorts": [3000, 5173, 8080, 1455],
|
||||
"appPort": [3000, 5173, 8080, 1455],
|
||||
"postCreateCommand": "./scripts/editor-setup.sh",
|
||||
"portsAttributes": {
|
||||
"3000": {
|
||||
"label": "Development Server",
|
||||
@@ -111,5 +112,9 @@
|
||||
"onAutoForward": "notify"
|
||||
}
|
||||
},
|
||||
"mounts": [
|
||||
"source=${localEnv:HOME}/.config/nvim,target=/home/node/.config/nvim,type=bind,consistency=cached",
|
||||
"source=${localWorkspaceFolder}/.codex,target=/home/node/.codex,type=bind,consistency=cached"
|
||||
],
|
||||
"remoteUser": "node"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user