Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/awcodify/revel
https://github.com/awcodify/revel
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/awcodify/revel
- Owner: awcodify
- Created: 2017-08-29T08:41:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-29T09:31:28.000Z (over 7 years ago)
- Last Synced: 2024-10-21T23:00:58.285Z (2 months ago)
- Language: Go
- Size: 339 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to Revel
A high-productivity web framework for the [Go language](http://www.golang.org/).
### Start the web server:
revel run myapp
### Go to http://localhost:9000/ and you'll see:
"It works"
## Code Layout
The directory structure of a generated Revel application:
conf/ Configuration directory
app.conf Main app configuration file
routes Routes definition fileapp/ App sources
init.go Interceptor registration
controllers/ App controllers go here
views/ Templates directorymessages/ Message files
public/ Public static assets
css/ CSS files
js/ Javascript files
images/ Image filestests/ Test suites
## Help
* The [Getting Started with Revel](http://revel.github.io/tutorial/gettingstarted.html).
* The [Revel guides](http://revel.github.io/manual/index.html).
* The [Revel sample apps](http://revel.github.io/examples/index.html).
* The [API documentation](https://godoc.org/github.com/revel/revel).