Skip to content

jango2015/bloggo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

89 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bloggo

Revel example blogging application. This requires a mongo db server, the defaults are detailed below. See the documentation for revmgo for more additional configuration options.

This is meant to be an example blogging application for the awesome revel framework See the related discussion in the revel framework users group.

Example users and content

Bloggo ships with two default user accounts and a few articles. You can log in as either 'Jane Doe' or 'John Doe' by using jane@example.com or john@example.com respectively with the password 12341234 for either user account.

Configuration

Database

The database is configurable via the app.conf directive bloggo.db if you do not set this it will default to "bloggo"

bloggo.db = bloggo

Collections

Revel models correspond to mongo collections. By default the collection name defaults to the model name eg. Article uses the "Article" collection in mongodb. If you want to store the model data in a different collection use the following config one per model type.

bloggo.db.collection.MODEL_NAME = "COLLECTION_NAME"

eg.

bloggo.db.collection.Articles = "articles"

Admin User

The admin user can be set via app.conf, with the directive bloggo.admin default this ships with it set as 'Jane Doe' one of the default users. The value is set to the mongo _id value of the user account that should be considered as the admin account.

eg.

bloggo.admin = "51e9aa4049a1b716bb000003"

TODO/Roadmap

  • User Landing pages
  • User Management
    • Creating accounts: limit to just the admin account
    • Reset Password
    • Locale
    • Timezone
    • Profile pictures
    • Deleting accounts: limit to just the admin account, and block deleting own account
  • Aritcles
    • Published/unpublished
    • Content pager
    • Article Pictures
  • Code Review & Refactoring
    • Rework any flakey abstractions
    • Fix templates so that there are no hanging tags
    • Determine how code can be better re-used.
      • Template helper functions
      • App config for date formatting
  • Internationalization show examples of UI/UX changing based on user settings
  • Search

About

Revel example bloggin application

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 48.9%
  • CSS 30.6%
  • HTML 20.4%
  • JavaScript 0.1%