Hermes is an open-source E-Mail tracking solution that is written in Go. It tracks emails using a tracking pixel.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Yiğit Çolakoğlu aaded42797 Initial commit 4 years ago
app Initial commit 4 years ago
conf Initial commit 4 years ago
messages Initial commit 4 years ago
public Initial commit 4 years ago
target/app/Hermes Initial commit 4 years ago
tests Initial commit 4 years ago
.gitignore Initial commit 4 years ago
Dockerfile Initial commit 4 years ago
README.md Initial commit 4 years ago
go.mod Initial commit 4 years ago
go.sum Initial commit 4 years ago
none Initial commit 4 years ago

README.md

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