mirror of https://github.com/hrfee/jfa-go
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.
34 lines
695 B
34 lines
695 B
4 years ago
|
configuration:
|
||
|
echo "Fixing config-base"
|
||
|
python3 config/fixconfig.py -i config/config-base.json -o data/config-base.json
|
||
|
echo "Generating config-default.ini"
|
||
|
python3 config/generate_ini.py -i config/config-base.json -o data/config-default.ini
|
||
|
|
||
|
sass:
|
||
|
echo "Getting libsass"
|
||
|
python3 -m pip install libsass
|
||
|
echo "Getting node dependencies"
|
||
|
python3 scss/get_node_deps.py
|
||
|
echo "Compiling sass"
|
||
|
python3 scss/compile.py
|
||
|
|
||
|
mail:
|
||
|
echo "Generating email html"
|
||
|
python3 mail/generate.py
|
||
|
|
||
|
compile:
|
||
|
echo "Downloading deps"
|
||
|
go mod download
|
||
|
echo "Building"
|
||
|
mkdir -p build
|
||
|
go build -o build/jfa-go *.go
|
||
|
|
||
|
copy:
|
||
|
echo "Copying data"
|
||
|
cp -r data build/
|
||
|
|
||
|
all: configuration sass mail compile copy
|
||
|
|
||
|
|
||
|
|