Skip to main content
Module

x/ruck/scripts/serve.sh

Ruck is an open source buildless React web application framework for Deno.
Go to Latest
File
#! /bin/sh# Serves the Ruck project files for testing in other local projects.
if [ -z "$1" ]; then echo "Argument 1 must be the port to serve on." exit 1fi
deno run \ --allow-net \ --allow-read \ https://deno.land/std/http/file_server.ts \ --port=$1 \ --cors