Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 slug 编译期间构建资产时,网上到处都在谈论 Rails。有没有办法用其他语言(如 Node.js 或 PHP)来做到这一点?
我有一种情况,我需要使用 Closure-Compiler 编译我的 javascript 文件,并且我创建了一个调用编译器的脚本,当它完成时,它是 call node app.js。然后在你的Procfile,你需要调用你新创建的脚本。就像是web: ./compile_and_start_server.sh
node app.js
Procfile
web: ./compile_and_start_server.sh
您还可以检查 package.json 中的“prestart”,但我从未尝试过。
https://npmjs.org/doc/scripts.html