Skip to main content
Module

x/deno_api_server/dev

API Server for deno for functional programmed endpoints
Go to Latest
File
#!/bin/bash
########### development env for your project#### @tip set an alias for dev command line tool in your env `alias d=./dev` for shorthand command in each project## @tip add custom scripts to eml by using projecttools eml `p eml extend [name]`#########dockerFile=etc/docker/docker-compose.dev.ymlpluginPath=etc/eml/plugin
if [ -f ./env.local.sh ]; then source ./env.local.shfi
subcommand="$1"
source etc/eml/eml.sh
if [ -d $pluginPath ]; then for commadPath in $pluginPath/* do source $commadPath donefi
if [ -f $pluginPath/$subcommand.sh ]; then command=eml-extend-$subcommand eval $command ${@:2}else eml $@fi