mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-12-22 09:00:10 +00:00
Added makefile
Alternative to goreleaser.
This commit is contained in:
parent
8ed1662a2f
commit
54af15cc5a
1
.gitignore
vendored
1
.gitignore
vendored
@ -10,3 +10,4 @@ data/*.html
|
||||
data/*.txt
|
||||
dist/*
|
||||
jfa-go
|
||||
build/
|
||||
|
33
Makefile
Normal file
33
Makefile
Normal file
@ -0,0 +1,33 @@
|
||||
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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user