All Projects → SimplyEdit → Simplyedit

SimplyEdit / Simplyedit

Licence: mit
The first CMS designed for the decentralized web

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Simplyedit

Alchemy cms
AlchemyCMS is a Rails CMS engine
Stars: ✭ 702 (+3800%)
Mutual labels:  cms
Zola
A fast static site generator in a single binary with everything built-in. https://www.getzola.org
Stars: ✭ 7,823 (+43361.11%)
Mutual labels:  cms
Sydes
Lightweight CMF for a simple sites with sqlite database
Stars: ✭ 6 (-66.67%)
Mutual labels:  cms
Platform
A modular multilingual CMS built with Laravel 5.
Stars: ✭ 719 (+3894.44%)
Mutual labels:  cms
Backdrop
Backdrop core code repository.
Stars: ✭ 779 (+4227.78%)
Mutual labels:  cms
Notion Api Worker
Notion as CMS with easy API access
Stars: ✭ 806 (+4377.78%)
Mutual labels:  cms
Fae
CMS for Rails. For Reals.
Stars: ✭ 701 (+3794.44%)
Mutual labels:  cms
Silverstripe Markdowntextareafield
Supercharged textarea with markdown preview for Silverstripe CMS
Stars: ✭ 6 (-66.67%)
Mutual labels:  cms
Wpseku
WPSeku - Wordpress Security Scanner
Stars: ✭ 791 (+4294.44%)
Mutual labels:  cms
Nodepress
😎 RESTful API service for Blog/CMS, powered by @nestjs
Stars: ✭ 829 (+4505.56%)
Mutual labels:  cms
Luya
LUYA is a scalable web framework and content management system with the goal to please developers, clients and users alike.
Stars: ✭ 741 (+4016.67%)
Mutual labels:  cms
Typo3.cms
The TYPO3 Core - Enterprise Content Management System. Synchronized read-only mirror of http://git.typo3.org/Packages/TYPO3.CMS.git
Stars: ✭ 761 (+4127.78%)
Mutual labels:  cms
Bludit
Simple, Fast, Secure, Flat-File CMS
Stars: ✭ 824 (+4477.78%)
Mutual labels:  cms
Bbs
巡云轻论坛系统包含论坛、问答模块。系统采用JAVA+MYSQL架构,自适应手机端和电脑端,界面简洁,性能高效。数据库表结构设计使用分表方案,提高系统的负载能力。后台数据库备份/还原、全站指定目录打包、一键自动升级等功能使维护简单方便。系统拥有强大的模板管理功能,布局版块支持设置输出条件,让前端页面展示方便快捷。
Stars: ✭ 712 (+3855.56%)
Mutual labels:  cms
Viscacha
A bulletin board and content management solution
Stars: ✭ 6 (-66.67%)
Mutual labels:  cms
Jamstack Cms
Modern full stack CMS. Built with Gatsby, GraphQL, AWS Amplify, and Serverless technologies.
Stars: ✭ 702 (+3800%)
Mutual labels:  cms
Dnn.platform
DNN (formerly DotNetNuke) is the leading open source web content management platform (CMS) in the Microsoft ecosystem.
Stars: ✭ 798 (+4333.33%)
Mutual labels:  cms
Notetoself
Command line note taking app
Stars: ✭ 16 (-11.11%)
Mutual labels:  cms
Symedit
Symfony2 Content Management System
Stars: ✭ 6 (-66.67%)
Mutual labels:  cms
Croogo
A CakePHP powered Content Management System
Stars: ✭ 824 (+4477.78%)
Mutual labels:  cms

SimplyEdit

The first CMS designed for the decentralized web

More information at SimplyEdit.io

SimplyEdit makes it easy to add a CMS to any existing website or application. All you need is add one script tag and then add some attributes to make parts of your page editable.

<h1 data-simply-field="title">A title</h1>

<script src="/js/simply-edit.js" data-api-key="mykey"></script>

SimplyEdit will try to save the contents of the fields to a file called /data/data.json by default, but you can tell it to store and retrieve the contents from another folder or even another site altogether:

<script src="/simplyedit/simply-edit.js" data-api-key="mykey" data-simply-endpoint="https://example.com/"></script>

Read more at SimplyEdit.io/for-developers/

Installation

First clone this repository.

cd {document root}/
git clone https://github.com/simplyedit/simplyedit.git

Then add a symlink to mimic a license key.

 cd {document root}/simplyedit/
 ln -s . mykey

If you want to use simplyedit on multiple domains, you must make sure that you set the Access-Control-Allow-Origin header. For Apache this can generally be done by adding a .htaccess file, like this:

cd {document root}/simplyedit/
cat 'Header set Access-Control-Allow-Origin "*"' > .htaccess
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].