Skip to content

snappytux/Omise-Go-Example

 
 

Repository files navigation

Welcome to Revel

A high-productivity web framework for the Go language.

Reproducible Installations

Install the dependencies and revisions listed in the lock file into the vendor directory. If no lock file exists an update is run.

$ glide install

or

docker run --rm -it -v $(pwd):/go/src/omise-go -w /go/src/omise-go instrumentisto/glide install

Start the web server:

docker-compose build
docker-compose up -d

Go to http://localhost:9000/ and you'll see:

Username Password
admin password

alt text

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

UnitTest

http://localhost:9000/@tests

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 44.1%
  • HTML 37.8%
  • CSS 15.8%
  • JavaScript 2.3%