私は電報ウェブをハッキングしてきましたが、それはかなり素晴らしいものです。
それはローカルで実行されてgulp watch
いますが、Igor が彼の gh ページで行ったのと同じくらい簡単に、Web にデプロイしたいと思います: https://zhukov.github.io/webogram。
スクリプトがあるように見えますが、どうすればよいかは不明ですmake
(README には記載されていません)。やってみmake publish
ましたが、エラーが発生しています:
[01:25:27] Finished 'add-appcache-manifest' after 85 ms
echo -n "Please open http://localhost:8000/dist/index.html and check if everything works fine." && read -e
Please open http://localhost:8000/dist/index.html and check if everything works fine./bin/sh: 1: read: Illegal option -e
Makefile:10: recipe for target 'publish' failed
make: *** [publish] Error 2
のパブリッシュ部分は次のMakefile
とおりです。
publish:
./node_modules/gulp/bin/gulp.js clean
cd dist && git pull origin gh-pages
./node_modules/gulp/bin/gulp.js publish
echo -n "Please open http://localhost:8000/dist/index.html and check if everything works fine." && read -e
cd dist && git add --all . && git commit -am "merged with master" && git push origin gh-pages
(静的ノード アプリを展開するための非常に基本的な手順に従うなど) 間違ったことをしていますか、それとも他に何か問題がありますか?