Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/apache/roller
Mirror of Apache Roller
https://github.com/apache/roller
content java roller
Last synced: about 1 month ago
JSON representation
Mirror of Apache Roller
- Host: GitHub
- URL: https://github.com/apache/roller
- Owner: apache
- License: apache-2.0
- Created: 2009-05-21T02:42:21.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2024-09-29T20:24:26.000Z (about 2 months ago)
- Last Synced: 2024-10-01T01:04:32.243Z (about 2 months ago)
- Topics: content, java, roller
- Language: Java
- Size: 288 MB
- Stars: 123
- Watchers: 23
- Forks: 122
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Apache Roller
[Apache Roller](http://roller.apache.org) is a Java-based, full-featured, multi-user and group-blog server suitable for blog sites large and small.
Roller is typically run with Apache Tomcat and MySQL.
Roller is made up of the following Maven projects:* _roller-project_: Top level project
* _app_: Roller Weblogger webapp, JSP pages, Velocity templates
* _assembly-release_: Used to create official distributions of Roller
* _docs_: Roller documentation in ASCII Doc format
* _it-selenium_: Integrated browser tests for Roller using Selenium## Documentation
The Roller Install, User and Template Guides are available in ODT format (for OpenOffice or LibraOffice):
*
## For more information
Hit the Roller Confluence wiki:
* How to build and run Roller:
* How to contribute to Roller:
* How to make a release of Roller:
* Other developer resources:## Installing Roller
If you want to run Roller in production, then you should down load the latest official release and install it by following the Installation Guide, which you can find at the documentation link: .
## Quick start: Running via Maven
You probably should not run Roller in production using this technique, but it's a relatively easy way to try Roller for yourself.
Assuming you've got a UNIX shell, Java, Maven and Git:Get the code:
$ git clone https://github.com/apache/roller.git
Compile and build Roller:
$ cd roller
$ mvn -DskipTests=true installRun Roller in Jetty with an embedded Derby database (for testing only):
$ mvn jetty:run
Once Jetty is up and running browse to to try to Roller.
## Quick start: running via Docker
Another way to try Roller is to use Docker.
This is actually easier than running via Maven because you do not need Maven or Java.
If you've got Docker, here's how you can run Roller for demo purposes.Get the code:
$ git clone https://github.com/apache/roller.git
Run Docker Compose to build and launch Roller along with a PostgreSQL database:
$ cd roller
$ docker-compose up
It will take a while to build and start the Docker image.
Once it's done browse to to try Roller.