Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/matveynator/sitebrush-v1

Static HTML editor. Easy website editor for everyone. Create stunning web pages hassle-free!
https://github.com/matveynator/sitebrush-v1

cms cms-backend cms-framework docker-image homepage homepage-app static-site static-site-generator templates web-dev webdesign website website-design website-template

Last synced: 19 days ago
JSON representation

Static HTML editor. Easy website editor for everyone. Create stunning web pages hassle-free!

Awesome Lists containing this project

README

        

# SiteBrush: Static HTML Website Editor.

Steps to install SiteBrush on your server:

## Easy installation via Docker (suitable for Linux Debian/Ubuntu etc):

1. Update packages: `apt-get update`
2. Install necessary packages: `apt-get -y install curl docker.io bash`
3. Run SiteBrush installation:
```bash
curl -L https://raw.githubusercontent.com/matveynator/sitebrush-v1/master/install-sitebrush-in-docker.sh > /tmp/install-sitebrush-in-docker.sh && bash /tmp/install-sitebrush-in-docker.sh
```

## Manual installation (for advanced users):

1. Create directories for backup and data:
```bash
mkdir -p /backup/sitebrush/mysql /backup/sitebrush/data
```
2. Create Docker volumes:
```bash
docker volume rm sitebrush_mysql_data sitebrush_site_data
docker volume create --opt type=none --opt device=/backup/sitebrush/mysql --opt o=bind sitebrush_mysql_data
docker volume create --opt type=none --opt device=/backup/sitebrush/data --opt o=bind sitebrush_site_data
```
3. Run the SiteBrush container:
```bash
docker run -d -p 80:80 -v "/etc/timezone:/etc/timezone:ro" -v "/etc/localtime:/etc/localtime:ro" -v sitebrush_mysql_data:/var/lib/mysql -v sitebrush_site_data:/opt/sitebrush.com -e MAILHUB="smtp.gmail.com:587" -e EMAIL="[email protected]" -e DOMAIN="gmail.com" -e AUTH_USER="[email protected]" -e AUTH_PASS="PASSWORD" --restart=unless-stopped --name=sitebrush matveynator/sitebrush-v1:latest
```

## Demo: [sitebrush.com](http://sitebrush.com)

Installing SiteBrush allows you to edit your website online without the need for knowledge of complex technical details. This editor combines the benefits of dynamic and static websites, providing convenience and high page loading speed.

## Features:

- Result - static HTML.
- Visual editor and ability to work with HTML/CSS/JavaScript.
- Automatic backup and website restoration.
- Support for repeating elements on all pages.
- Automatic import of all necessary files.
- Support for changing page addresses without 404 errors.
- Freeze mode for editing and publishing without downtimes.