18 lines
433 B
Markdown
18 lines
433 B
Markdown
|
# Scripts directory
|
||
|
|
||
|
This directory contains various scripts that is used for whole application lifecycle - building, testing, deploying, etc.
|
||
|
|
||
|
**WARNING**: these scripts assuming that they're launched from root directory of project! Do not launch them like:
|
||
|
|
||
|
```shell
|
||
|
./some_stript.sh
|
||
|
```
|
||
|
|
||
|
Instead launch them from root directory like:
|
||
|
|
||
|
```shell
|
||
|
./scripts/some_script.sh
|
||
|
```
|
||
|
|
||
|
Otherwise your computer might explode. You were warned.
|