View on GitHub

newLISP-on-Rockets

A fast, flexible, and fun blog app. Also, an easy-to-learn web development framework. Written in newLISP.

Rockets 2.0 Documentation

Rockets Logo

Table of contents

  1. Introduction
  2. Why Rockets?
  3. Installing Rockets
  4. Running your Rockets blog
  5. Customizing your Rockets blog
  6. How Rockets works
  7. Extending Rockets
  8. Developing for Rockets
  9. The future of Rockets
  10. Rockets API reference

Introduction

Rockets is a fast, fun, and customizable blog application that is open source. It’s also an easy-to-learn web application development framework.

It runs on the Linux platform.

Why Rockets?

You may be interested in running Rockets if you:

If you are looking for a full-featured blog application with tons of available themes and plugins, you probably want something like WordPress instead.

Installing Rockets

To install Rockets, you will need a Linux operating system. This can be either:

If you are just experimenting at home, the first option is fine. If you want to run Rockets as a public website, choose the second option. Most home Internet service providers don’t allow you to run public websites from your home computer.

For step-by-step instructions, click one of the links below:

Running your Rockets blog

Rockets works like most blogs. It displays a list of blog posts with the most recent displayed first. However, Rockets has a few unique features.

Specifically, Rockets contains a blog and a forum, but they are connected to a single user login and a single database.

All new blog posts appear in the forum under a different view, but only Admins can create new blog posts. Any registered user can create new forum threads, reply to blogs, or reply to other forum threads.

To learn more about running a Rockets blog, click here: Running a Rockets blog

Customizing your Rockets blog

Rockets is customizable out-of-the box using the built-in Admin menu.

Specifically, you can change the following things:

For more information on this customization, click here: Customizing your Rockets blog

For greater customizability, see the Extending Rockets section below.

How Rockets works

Rockets is an application written in newLISP, a dialect of the LISP language.

The web server application Apache takes pages that have the extension .lsp instead of the default .html, and redirects them to the newLISP interpreter. Then, newLISP generates custom HTML for each page based on the code in that .lsp file. Finally, the web server sends the HTML to the user’s web browser.

Data about users, blog posts, and forum posts is stored in a SQLite database, running on the same server.

Configuration options for the blog are stored in text files with the .lisp extension, which are set to be non-viewable by the public.

For more information about how Rockets works, click here: How Rockets works

Extending Rockets

Rockets is designed to be easily extendable. What does this mean? It’s very simple to make a new page on your blog that behaves differently from all other pages.

To learn more, click here: Extending Rockets

Developing for Rockets

Rockets is open source, which means that anyone can contribute ideas and code to the framework and blog application.

To view the code, and submit comments, change requests, or new code, click here:

https://github.com/newlisponrockets/newLISP-on-Rockets

The future of Rockets

Rockets started out as way for me to learn how make custom websites. The blog application eventually grew to the point where I could replace my own personal blog at jeremyreimer.com with Rockets.

This version became Rockets 2.0, which you are reading about now.

In the future, I want to work on Rockets 3.0, which will include new features that aren’t standard in typical blogs. My vision is to create a kind of “virtual space” on the web that can grow and change with the owner and their own community. Like a home where you would invite guests and play fun little games, or design something new together.

This is a long-term project and I have no deadlines or milestones for Rockets 3.0 at the moment. Stay tuned!

Rockets API reference

For a full and up-to-date Rockets application programming interface (API) reference, click here:

Rockets API reference page