GitXplorerGitXplorer
y

apache-roller

public
0 stars
0 forks
20 issues

Commits

List of commits on branch master.
Verified
045d0cd7774a700ac4a30ef75e565192e662fbd7

Merge pull request #16 from yoswein/whitesource/migrate-configuration

yyoswein committed 3 years ago
Verified
0f5c5bf509ae6f7b4717d1e65431439e73b1218d

Migrate .whitesource configuration file to inheritance mode

mmend-for-github-com[bot] committed 3 years ago
Verified
382547f5f6dc644c16b68a76a2c3b4fc976a8c97

Update .whitesource

yyoswein committed 4 years ago
Verified
1068bf0e7ce0b9a2b2ddff85d8b0c78c394237f8

Merge pull request #1 from samq-wsdemo/whitesource/configure

ssamq-ws committed 4 years ago
Verified
5da71af5c6cd6f6a7e520a5a066356f6c23ae552

Add .whitesource configuration file

mmend-for-github-com[bot] committed 4 years ago
Unverified
0ee2beaba558f1d2f57792aa91ee988925a32cf8

removed gh action

ssamq-ws committed 4 years ago

README

The README file for this repository.

Apache Roller

Apache Roller 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 ODT 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:

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: https://github.com/apache/roller/tree/master/docs.

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 install

Run Roller in Jetty with an embedded Derby database (for testing only):

$ mvn jetty:run

Once Jetty is up and running browse to http://localhost:8080/roller 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 http://localhost:8080/roller to try Roller.