discourse/README.md

114 lines
5.5 KiB
Markdown
Raw Normal View History

<a href="http://www.discourse.org/">![Logo](images/discourse.png)</a>
2013-02-05 14:16:51 -05:00
2013-02-20 16:07:38 -05:00
Discourse is the 100% open source, next-generation discussion platform built for the next decade of the Internet.
2013-02-05 14:16:51 -05:00
Whenever you need ...
2013-02-20 16:07:38 -05:00
- a mailing list
- a forum to discuss something
- a chat room where you can type paragraphs
2013-02-05 14:16:51 -05:00
... consider Discourse.
2014-03-01 03:40:35 -05:00
To learn more about the philosophy and goals of the project, [visit **discourse.org**](http://www.discourse.org).
2013-08-09 19:35:25 -04:00
2014-02-22 03:56:30 -05:00
## Screenshots
2014-02-22 04:51:50 -05:00
[![](https://raw2.github.com/discourse/discourse-docimages/master/readme/boing-boing-latest-small2.png)](http://bbs.boingboing.net)
[![](https://raw2.github.com/discourse/discourse-docimages/master/readme/how-to-geek-profile-small2.png)](http://discuss.howtogeek.com)
[![](https://raw2.github.com/discourse/discourse-docimages/master/readme/new-relic-categories-small2.png)](http://discuss.newrelic.com)
[![](https://raw2.github.com/discourse/discourse-docimages/master/readme/turtle-rock-topic-small2.jpg)](https://talk.turtlerockstudios.com/)
2014-03-01 03:40:35 -05:00
[![](https://raw.github.com/discourse/discourse-docimages/master/readme/nexus-7-mobile-discourse-small3.png)](http://discuss.atom.io)
[![](https://raw.github.com/discourse/discourse-docimages/master/readme/iphone-5s-mobile-discourse-small4.png)](http://discourse.soylent.me)
2014-02-22 03:56:30 -05:00
2013-02-05 14:16:51 -05:00
## Getting Started
2014-02-25 04:27:11 -05:00
1. If you're **brand new to Ruby and Rails**, please see [**Discourse as Your First Rails App**](http://blog.discourse.org/2013/04/discourse-as-your-first-rails-app/) or our [**Discourse Vagrant Developer Guide**](docs/VAGRANT.md), which includes instructions to get up and running in a development environment using a virtual machine.
2013-02-05 14:16:51 -05:00
2014-01-14 20:30:44 -05:00
2. If you're familiar with how Rails works and are comfortable setting up your own environment, use our [**Discourse Advanced Developer Guide**](docs/DEVELOPER-ADVANCED.md).
2014-02-25 04:27:11 -05:00
Before you get started, ensure you have the following minimum versions: [Ruby 1.9.3+](http://www.ruby-lang.org/en/downloads/), [PostgreSQL 9.1+](http://www.postgresql.org/download/), [Redis 2.6+](http://redis.io/download). If you're having trouble, please see our [**TROUBLESHOOTING GUIDE**](docs/TROUBLESHOOTING.md) first!
2013-08-01 18:28:26 -04:00
## Setting up a Discourse Forum
2014-02-25 03:51:29 -05:00
If you want to set up a Discourse forum for production use, see our [**Discourse Install Guide**](docs/INSTALL.md).
2014-03-01 03:40:35 -05:00
## Requirements
2013-02-05 14:16:51 -05:00
2013-04-11 00:25:34 -04:00
Discourse is built for the *next* 10 years of the Internet, so our requirements are high:
2013-02-05 14:16:51 -05:00
2014-03-01 03:40:35 -05:00
Desktop browsers:
2013-02-27 04:14:44 -05:00
- Internet Explorer 9.0 (may not be fully functional), 10.0+
2013-02-20 16:07:38 -05:00
- Firefox 16+
2013-02-20 16:22:12 -05:00
- Google Chrome 23+
2013-02-25 11:42:20 -05:00
- Safari 5+
2014-01-22 14:35:38 -05:00
2014-03-01 03:40:35 -05:00
Tablets:
2013-02-20 16:07:38 -05:00
- iPad 2+
2013-02-20 16:22:12 -05:00
- Android 4.1+
2013-02-20 16:07:38 -05:00
- Windows 8
2014-01-22 14:35:38 -05:00
2014-03-01 03:40:35 -05:00
Smartphones:
- iOS 6+
2014-01-14 20:24:39 -05:00
- Android 4.1+
- Windows Phone 8
2013-02-05 14:16:51 -05:00
## Built With
Discourse is built from the following open source components:
- [Ruby on Rails](https://github.com/rails/rails) - Our back end API is a Rails app. It responds to requests RESTfully and responds in JSON.
- [Ember.js](https://github.com/emberjs/ember.js) - Our front end is an Ember.js app that communicates with the Rails API.
- [PostgreSQL](http://www.postgresql.org/) - Our main data store is in Postgres.
- [Redis](http://redis.io/) - We use Redis for our job queue, rate limiting, as a cache and for transient data.
Plus *lots* of Ruby Gems, a complete list of which is at [/master/Gemfile](https://github.com/discourse/discourse/blob/master/Gemfile).
2013-02-05 14:16:51 -05:00
## Contributing
[![Build Status](https://travis-ci.org/discourse/discourse.png)](https://travis-ci.org/discourse/discourse)
2013-02-11 05:48:04 -05:00
[![Code Climate](https://codeclimate.com/github/discourse/discourse.png)](https://codeclimate.com/github/discourse/discourse)
2013-02-05 14:16:51 -05:00
Discourse is **100% free** and **open-source**. We encourage and support an active, healthy community that
2013-04-11 00:25:34 -04:00
accepts contributions from the public. We'd like you to be a part of that community.
2013-02-05 14:16:51 -05:00
2013-02-20 16:33:11 -05:00
Before contributing to Discourse, please:
2013-02-05 14:16:51 -05:00
2014-02-25 04:27:11 -05:00
1. Please read the complete mission statements on [discourse.org](http://www.discourse.org).
2. Read and sign the [**Electronic Discourse Forums Contribution License Agreement**](http://discourse.org/cla)
3. Dig into [**CONTRIBUTING.MD**](CONTRIBUTING.md), which covers:
- submitting bugs
- requesting new features
- preparing your code for a Pull Request
2013-02-27 04:26:57 -05:00
4. Not sure what to work on? [**We've got some ideas!**](http://meta.discourse.org/t/so-you-want-to-help-out-with-discourse/3823)
2013-02-05 14:16:51 -05:00
2014-03-01 03:40:35 -05:00
We look forward to seeing your pull requests!
2013-02-05 14:16:51 -05:00
## The Discourse Team
The original Discourse code contributors can be found in [**AUTHORS.MD**](docs/AUTHORS.md). For a complete list of the many individuals that contributed to the design and implementation of Discourse, please refer to [the official Discourse blog](http://blog.discourse.org/2013/02/the-discourse-team/) and [GitHub's list of contributors](https://github.com/discourse/discourse/contributors).
2013-04-11 00:45:31 -04:00
2013-02-05 14:16:51 -05:00
## Copyright / License
2014-01-14 20:24:39 -05:00
Copyright 2014 Civilized Discourse Construction Kit, Inc.
2013-02-05 14:16:51 -05:00
Licensed under the GNU General Public License Version 2.0 (or later);
you may not use this work except in compliance with the License.
You may obtain a copy of the License in the LICENSE file, or at:
http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
2013-02-27 04:14:44 -05:00
Discourse logo and “Discourse Forum” ®, Civilized Discourse Construction Kit, Inc.
## Dedication
2013-02-28 13:55:26 -05:00
Discourse is built with [love, Internet style.](http://www.youtube.com/watch?v=Xe1TZaElTAs)