Quick Start

Let's create your Oomph sandbox in four simple steps and introduce you to a few key features.

Install Oomph

Create a copy of the template to your remote repository by following the link: https://github.com/new?template_name=sauveur.dev&template_owner=codebenderhq

Clone the repository <the repository created on github above> to your local workstation.

git clone <the repository created on GitHub above>

Install Deno

Install Deno locally on your computer by following the link below.

In your terminal, paste the installation code provided below as shown:

irm https://deno.land/install.ps1 | iex

cd into the cloned repository.

Create .env file

Create a .env file like so

In the newly created .env file, paste "env=dev" and save like so:

Start the development server

In your terminal, initialize the development server by the following code

deno task  start

Last updated