Skip to content

tomoyan/go_bbs_revel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Welcome to Revel BBS

Getting Started

A high-productivity web framework for the Go language.

Start the web server:

go get github.com/tomoyan/go_bbs_revel
revel run github.com/tomoyan/go_bbs_revel

Run with --help for options.

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

"Go掲示板"

heroku:

https://go-bbs-revel-2625.herokuapp.com

Description of Contents

The default directory structure of a generated Revel application:

revel-bbs           App root
  app               App sources
    controllers     App controllers
      init.go       Interceptor registration
    models          App domain models
    routes          Reverse routes (generated code)
    views           Templates
  tests             Test suites
  conf              Configuration files
    app.conf        Main configuration file
    routes          Routes definition
  messages          Message files
  public            Public assets
    css             CSS files
    js              Javascript files
    images          Image files

app

The app directory contains the source code and templates for this application.

conf

The conf directory contains the application’s configuration files. There are two main configuration files:

* app.conf, the main configuration file for the application, which contains standard configuration parameters
* routes, the routes definition file.

messages

The messages directory contains all localized message files.

public

Resources stored in the public directory are static assets that are served directly by the Web server. Typically it is split into three standard sub-directories for images, CSS stylesheets and JavaScript files.

The names of these directories may be anything; the developer need only update the routes.

test

Tests are kept in the tests directory. Revel provides a testing framework that makes it easy to write and run functional tests against your application.

Follow the guidelines to start developing your application:

Contributing

We encourage you to contribute to Revel! Please check out the Contributing to Revel guide for guidelines about how to proceed. Join us!

go_bbs_revel

About

Go: Simple BBS using Revel Framework

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published