Add exec + doc header
This commit is contained in:
parent
8c77418b6a
commit
bf14067eb0
5 changed files with 24 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# script/bootstrap: Resolve all dependencies that the application requires to
|
||||||
|
# run.
|
||||||
|
|
||||||
cd "$(dirname "$0")/.."
|
cd "$(dirname "$0")/.."
|
||||||
|
|
||||||
script/bootstrap_server
|
script/bootstrap_server
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# script/cibuild: Setup environment for CI to run tests. This is primarily
|
||||||
|
# designed to run on the continuous integration server.
|
||||||
|
|
||||||
script/bootstrap_server
|
script/bootstrap_server
|
||||||
script/test coverage
|
script/test coverage
|
||||||
coveralls
|
coveralls
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# script/server: Launch the application and any extra required processes
|
||||||
|
# locally.
|
||||||
|
|
||||||
cd "$(dirname "$0")/.."
|
cd "$(dirname "$0")/.."
|
||||||
|
|
||||||
python3 -m homeassistant -c config
|
python3 -m homeassistant -c config
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# script/test: Run test suite for application. Optionallly pass in a path to an
|
||||||
|
# individual test file to run a single test.
|
||||||
|
|
||||||
cd "$(dirname "$0")/.."
|
cd "$(dirname "$0")/.."
|
||||||
|
|
||||||
echo "Running tests..."
|
echo "Running tests..."
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# script/update: Update application to run for its current checkout.
|
||||||
|
|
||||||
cd "$(dirname "$0")/.."
|
cd "$(dirname "$0")/.."
|
||||||
|
|
||||||
git pull
|
git pull
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue