创建一个新的 Revel 应用程序

在 GOPATH 中使用 Revel 命令行工具创建一个空的项目并运行:

  1. $ cd $GOPATH
  2. $ revel new myapp
  3. ~
  4. ~ revel! http://revel.github.io
  5. ~
  6. Your application is ready:
  7. /Users/revel/code/gocode/src/myapp
  8. You can run it with:
  9. revel run myapp
  10. $ revel run myapp
  11. ~
  12. ~ revel! http://revel.github.io
  13. ~
  14. 2012/09/27 17:01:54 run.go:41: Running myapp (myapp) in dev mode
  15. 2012/09/27 17:01:54 harness.go:112: Listening on :9000

打开你的浏览器 http://localhost:9000/ 看到一个通知,您的应用程序已准备就绪。

Your Application Is Ready

点击这里查看项目结构。

下一篇: 学习 Reve 如何处理请求。