71d8e49a3d
* fix: fixed transaction messages (#792) * Open Source + Docker image (#793) * feat: added dummy charting library * feat: added docker workflow * feat: remove tests and code-coverage * feat: added final TradingView fallback * env: set private to false * fix: added production env * env: added README and LICENSE * env: cleanup variables * env: add license field * env: finish docker setup * fix: updated the description of the dummy data
15 lines
443 B
Bash
15 lines
443 B
Bash
#!/bin/sh
|
|
|
|
remove_if_directory_exists() {
|
|
if [ -d "$1" ]; then rm -Rf "$1"; fi
|
|
}
|
|
|
|
remove_if_directory_exists "public/charting_library"
|
|
remove_if_directory_exists "public/datafeeds"
|
|
remove_if_directory_exists "src/utils/charting_library"
|
|
remove_if_directory_exists "src/utils/datafeeds"
|
|
|
|
cp -r src/dummy/charting_library public/
|
|
cp -r src/dummy/charting_library src/utils/
|
|
cp -r src/dummy/datafeeds public/
|
|
cp -r src/dummy/datafeeds src/utils/ |