ESPTerm web interface submodule, separated to make testing and development easier
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
cd $(dirname $0)
|
|
|
|
source "_build_common.sh"
|
|
|
|
rm -fr out/*
|
|
|
|
./_build_css.sh
|
|
./_build_js.sh $@
|
|
./_build_html.sh $@
|
|
./_build_assets.sh
|
|
|
|
echo 'ESPTerm front-end ready'
|
|
|