andreasfaerber / staticman

💪 Static sites with superpowers

Home Page:https://staticman.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Staticman

Static sites with superpowers

Table of contents

  1. Introduction
  2. Prerequisites
  3. Running on Docker
  4. API configuration
  5. Site configuration
  6. Sites using Staticman

Introduction

Staticman is a Node.js application that receives user-generated content and uploads it as data files to a GitHub repository. In practice, this allows you to have dynamic content (e.g. blog post comments) as part of a fully static Jekyll site running on GitHub Pages.

It consists of a small web server that handles the POST requests from your forms, runs various forms of validation and then pushes them to your repository as data files. You can choose to enable moderation, which means files will be pushed to a separate branch and a pull request will be created for your approval, or disable it completely, meaning that files will be pushed to the main branch automatically.

NOTE: Sections Prerequisites and Middleman configuration are only relevant if you wish to host your own instance of Staticman. If not, there is an instance you can use for free. Please see https://staticman.net/get-started for more details.

Prerequisites

Staticman runs as a GitHub bot, so it needs a GitHub account and a personal access token.

The bot needs push permission on the repositories it works with, so you'll need to add him as a collaborator. In order for him to accept the invitation, fire a GET request to:

http://your-staticman-url/v1/connect/{GitHub username}/{GitHub repository}

Running on Docker

With Docker, it's easy to run Staticman on any environment without downloading, configuring or installing anything manually on your host other than Docker and Docker Compose.

First, you need to install Docker and Docker Compose.

Production

In production mode, the project source is imported and dependencies installed to the container.

To start the service:

docker-compose up

Development

In development mode, the source code is mounted from the host. You can see any changes you made in the sources by simply restarting the container.

To start the service:

docker-compose -f docker-compose.development.yml up

Usage

Use your IP address or localhost as the Staticman API address.

API configuration

Staticman will look for a JSON configuration file named config.{ENVIRONMENT}.json in the root of the application, with {ENVIRONMENT} being replaced by the environment setting (e.g. config.development.json). Alternatively, each configuration parameter can be supplied using an environment variable.

Click here to see a list of available configuration parameters.

Site configuration

Parameters used to configure a site can be found here.

Sites using Staticman

Are you using Staticman? Let us know!

About

💪 Static sites with superpowers

https://staticman.net

License:MIT License


Languages

Language:JavaScript 100.0%