安装node.js和bower之后,运行bower出现/usr/bin/env: 'node': No such file or directory错误 这个错误是由于安装完node.js环境变量并没有设置好,需要手动链接,才可以正常使用. #解决方法 执行一下命令sudo ln -s /usr/bin/nodejs /usr/bin/node
在elixir的config中我们有时会使用的到一些不想暴露出来的配置项,常用的作法是如Phoenix #config/prod.exs use Mix.Config ... # Finally import the config/prod.secret.exs # which should be versioned separately. import_config "prod.secret.exs" 在上面,我们可以把不应该暴露的项(如数据库passwd,auth_token...