Some tests with Revel and Ent golang frameworks
 
 
Go to file
flavien 2df3410183 revel app init 2022-11-06 18:37:54 +01:00
app revel app init 2022-11-06 18:37:54 +01:00
conf revel app init 2022-11-06 18:37:54 +01:00
messages revel app init 2022-11-06 18:37:54 +01:00
public revel app init 2022-11-06 18:37:54 +01:00
tests revel app init 2022-11-06 18:37:54 +01:00
.gitignore revel app init 2022-11-06 18:37:54 +01:00
README.md revel app init 2022-11-06 18:37:54 +01:00
go.mod revel app init 2022-11-06 18:37:54 +01:00
go.sum revel app init 2022-11-06 18:37:54 +01:00

README.md

revel_ent

Some tests with Revel and Ent golang frameworks

Welcome to Revel

A high-productivity web framework for the Go language.

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 file

app/              App sources
    init.go       Interceptor registration
    controllers/  App controllers go here
    views/        Templates directory

messages/         Message files

public/           Public static assets
    css/          CSS files
    js/           Javascript files
    images/       Image files

tests/            Test suites

Help