Repository
Current version released
3 years ago
Versions
setup 🏐
Quickly set up a Deno project.
Summary
setup is a script that will do everything you need to quickly start a new Deno
project:
- Checks if the supplied name already exists on
deno.land/x - Authenticates with Github, using the
GITHUB_TOKENenvironment variable - Creates a new repository on Github, using a sensible boilerplate. This minimal boilerplate includes VSCode settings and a basic release GHA workflow.
- Clones the project locally
- Sets up the webhook for publishing to
deno.land/x
Usage
Run the remote script:
deno run --allow-net --allow-env --allow-run --allow-read https://deno.land/x/setup/setup.ts <name>Or install it locally:
deno install --allow-net --allow-env --allow-run --allow-read https://deno.land/x/setup/setup.tsThen run it:
setup <name>The repository will be cloned in the current directory, so make sure you’re in the right place first.
Authenticating with Github
setup authenticates with Github by looking for an environment variable called
GITHUB_TOKEN. This should be set to a personal access token generated from
your account.
Granting permissions
setup requires a number of permissions to run. These are:
--allow-net: to make outgoing network requests to bothdeno.land/xand Github--allow-env: to read theGITHUB_TOKENenvironment variable--allow-run: to run thegitcommand in order to locally clone the repo--allow-read: to use theDeno.chdir()api