mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-16 13:01:04 +02:00
* Add phony makefile targets in frontend folder * Make block explorer url depending on network * Got dynamic block explorer link working for detail page * Got block explorer link working for ancestor thread squeaks * Use network to get correct block explorer url in timeline * Show correct block explorer link in address page * Update static build
17 lines
268 B
Makefile
17 lines
268 B
Makefile
all: clean build
|
|
|
|
clean:
|
|
rm -rf build node_modules
|
|
|
|
rundev:
|
|
./build-protos.sh
|
|
npm install
|
|
REACT_APP_SERVER_PORT=12994 npm start
|
|
|
|
build:
|
|
./build-protos.sh
|
|
npm install
|
|
npm run build
|
|
cp -r build/ ../squeaknode/admin/webapp/static/
|
|
|
|
.PHONY: all clean rundev build
|