All Projects → go-saloon → saloon-legacy

go-saloon / saloon-legacy

Licence: BSD-3-Clause license
A place to chat and communicate: a buffalo forum

Programming Languages

go
31211 projects - #10 most used programming language
HTML
75241 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to saloon-legacy

Iisns
sns 开放社区
Stars: ✭ 217 (+158.33%)
Mutual labels:  forum
Rocboss Old
High load, simple micro community software
Stars: ✭ 247 (+194.05%)
Mutual labels:  forum
reactions
❤ A Flarum extension that adds reactions to your Flarum Community!
Stars: ✭ 17 (-79.76%)
Mutual labels:  forum
Phpdish
🏠 PHPDish is a powerful forum system written in PHP. It is based on the Symfony PHP Framework.
Stars: ✭ 225 (+167.86%)
Mutual labels:  forum
Natika
Simple PHP Forum system for developers.
Stars: ✭ 236 (+180.95%)
Mutual labels:  forum
BookForum
A light-weight forum powered by Django. It supports many of the necessary functions out of the box.
Stars: ✭ 21 (-75%)
Mutual labels:  forum
Nobibi
一款基于Next.js+mongo的轻量级开源社区(open community by Next.js & mongo)
Stars: ✭ 209 (+148.81%)
Mutual labels:  forum
core
The Laravel single page forum package (Vue + Tailwind CSS + Laravel)
Stars: ✭ 157 (+86.9%)
Mutual labels:  forum
Roo
😋 美观大气的论坛社区
Stars: ✭ 238 (+183.33%)
Mutual labels:  forum
docker
The official Dockerfile for the MyBB forum software.
Stars: ✭ 42 (-50%)
Mutual labels:  forum
Djangobb
DjangoBB mirror. DjangoBB is a quick and simple forum which uses the Django Framework (written in Python language). Abbreviation DjangoBB stands for Django Bulletin Board. DjangoBB is distributed under the BSD license.
Stars: ✭ 232 (+176.19%)
Mutual labels:  forum
Forum
Ama Laravel? Torne se um Jedi e Ajude outros Padawans
Stars: ✭ 233 (+177.38%)
Mutual labels:  forum
yibu.io
A simple and elegant forum, inspired from Reddit. https://yibuio.herokuapp.com/
Stars: ✭ 16 (-80.95%)
Mutual labels:  forum
Collipa
The source code of Collipa
Stars: ✭ 217 (+158.33%)
Mutual labels:  forum
ng-forum
🌍 Meet Developers around the Globe
Stars: ✭ 43 (-48.81%)
Mutual labels:  forum
Docker Flarum
💬 🐳 Docker image of Flarum
Stars: ✭ 216 (+157.14%)
Mutual labels:  forum
Forum
Django forum clone from F2E.im support SAE
Stars: ✭ 252 (+200%)
Mutual labels:  forum
geekforum
基于python3.5、django1.10、xadmin的多用户博客论坛系统
Stars: ✭ 86 (+2.38%)
Mutual labels:  forum
revel
[Deprecated] Revel is an elegant forum or knowledge sharing system base on NodeJS especially VueJS and Parse-Server
Stars: ✭ 18 (-78.57%)
Mutual labels:  forum
CodeFec
CodeFec
Stars: ✭ 18 (-78.57%)
Mutual labels:  forum

Saloon (legacy)

Build Status GoDoc

Saloon is a Work in Progress forum based on Buffalo. This particular repository houses the legacy saloon which is no longer maintained.

See saloon for a newer saloon in working condition.

Database setup

One needs a database to run saloon. Here is an example, running postgres inside a docker container:

$> docker run --name saloon-postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 -d postgres

Create Your Databases

Ok, so you've edited the "database.yml" file and started postgres, now Buffalo can create the databases in that file for you:

$> buffalo db create -a
v4.2.0

created database saloon-test
created database saloon-prod
created database saloon-dev

You can run saloon to initialize the forum and the content of its database:

$> saloon migrate
> create_users
> create_categories
> create_topics
> create_replies
> create_forums

0.6591 seconds

$> saloon t db:setup
DEBU[2018-03-20T15:39:44+01:00] INSERT INTO users (admin, avatar, created_at, email, full_name, id, password_hash, subscriptions, updated_at, username) VALUES (:admin, :avatar, :created_at, :email, :full_name, :id, :password_hash, :subscriptions, :updated_at, :username)
DEBU[2018-03-20T15:39:44+01:00] INSERT INTO forums (created_at, description, id, logo, title, updated_at) VALUES (:created_at, :description, :id, :logo, :title, :updated_at)

The db:setup task created an admin user with (by default) a password admin. You change that!

Starting the Application

Buffalo ships with a command that will watch your application and automatically rebuild the Go binary and any assets for you. That's useful when developing on saloon. To do that run the "buffalo dev" command:

$> buffalo dev

If you point your browser to http://127.0.0.1:3000 you should see a "Welcome to the Saloon Forum" page.

In production, one can instead directly run the saloon executable:

$> saloon
INFO[0000] Starting application at 127.0.0.1:3000
INFO[2018-03-20T15:40:31+01:00] Starting Simple Background Worker
[...]

Screenshots

Welcome page

00-home

Register a new user

01-register

Logged in

02-logged

Create a category

03-create-category 04-create-category-ok

Create a topic

05-create-topic 06-create-topic

Reply to a topic

07-reply 08-reply

Topics

09-topics

User settings

10-users-settings

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].