Languages
Deno in Gitpod
It’s easy to set up Deno in Gitpod.
And configure this Dockerfile in your .gitpod.yml:
It’ll run the latest Deno version and install the Bash completions.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
FROM gitpod/workspace-full
RUN curl -fsSL https://deno.land/x/install/install.sh | sh
RUN /home/gitpod/.deno/bin/deno completions bash > /home/gitpod/.bashrc.d/90-deno && \
echo 'export DENO_INSTALL="/home/gitpod/.deno"' >> /home/gitpod/.bashrc.d/90-deno && \
echo 'export PATH="$DENO_INSTALL/bin:$PATH"' >> /home/gitpod/.bashrc.d/90-deno
image:
file: .gitpod.Dockerfile
| Repository | Description | Try it |
|---|---|---|
| fake-log-generator | Generator for fake log files as CLI application |
Was this page helpful?