All Projects → biskuitorg → biskuit

biskuitorg / biskuit

Licence: MIT license
A modular and lightweight CMS built with Symfony components and Vue.js

Programming Languages

PHP
23972 projects - #3 most used programming language
CSS
56736 projects
javascript
184084 projects - #8 most used programming language
Less
1899 projects
Vue
7211 projects
HTML
75241 projects

Projects that are alternatives of or similar to biskuit

Pagekit
Pagekit CMS
Stars: ✭ 5,455 (+14643.24%)
Mutual labels:  content, content-management, pagekit
ulboracms
Ulbora CMS is a self-contained CMS (no database needed) written in Golang. It uses a JSON datastore with content saved in both json files and in memory. You can download and upload a single binary backup file containing content, images, and templates as needed. It also has a built-in mail sender.
Stars: ✭ 42 (+13.51%)
Mutual labels:  content, content-management
Distributor
Share content between your websites.
Stars: ✭ 282 (+662.16%)
Mutual labels:  content, content-management
solidus static content
📄 Content management for your Solidus store.
Stars: ✭ 18 (-51.35%)
Mutual labels:  content, content-management
Flextype
Hybrid Content Management System with the freedom of a headless CMS and with the full functionality of a traditional CMS
Stars: ✭ 436 (+1078.38%)
Mutual labels:  content, content-management
Contentify
Contentify is an esports CMS based on the PHP framework Laravel
Stars: ✭ 189 (+410.81%)
Mutual labels:  content, content-management
Grav Plugin Admin
Grav Admin Plugin
Stars: ✭ 316 (+754.05%)
Mutual labels:  content, content-management
Spring Content
Cloud-Native Storage and Enterprise Content Services (ECMS) for Spring
Stars: ✭ 151 (+308.11%)
Mutual labels:  content, content-management
Lokum
Manage a website’s content using Trello
Stars: ✭ 26 (-29.73%)
Mutual labels:  content, content-management
Grav
Modern, Crazy Fast, Ridiculously Easy and Amazingly Powerful Flat-File CMS powered by PHP, Markdown, Twig, and Symfony
Stars: ✭ 13,067 (+35216.22%)
Mutual labels:  content, content-management
Unite Cms
Really flexible headless CMS, built on top of Symfony and GraphQL.
Stars: ✭ 242 (+554.05%)
Mutual labels:  content, content-management
in2publish core
in2publish Community Version
Stars: ✭ 38 (+2.7%)
Mutual labels:  content
irsync
rsync on interval, via command line binary or docker container. Server and IOT builds for pull or push based device content management.
Stars: ✭ 19 (-48.65%)
Mutual labels:  content-management
droidovpn
An unofficial VPN Gate client for Android.
Stars: ✭ 65 (+75.68%)
Mutual labels:  unofficial
pageflo
A new super flexible open source CMS
Stars: ✭ 34 (-8.11%)
Mutual labels:  content-management
gui-demo
Content Blockchain Desktop Application
Stars: ✭ 29 (-21.62%)
Mutual labels:  content
appflowy
AppFlowy is an open-source alternative to Notion. You are in charge of your data and customizations. Built with Flutter and Rust.
Stars: ✭ 24,929 (+67275.68%)
Mutual labels:  content-management
boom-core
BoomCMS core code. BoomCMS is a user friendly, WYSIWYG CMS based on Laravel. Open source and released under the MIT license.
Stars: ✭ 13 (-64.86%)
Mutual labels:  content-management
unfurl
Extract rich metadata from URLs
Stars: ✭ 41 (+10.81%)
Mutual labels:  content
laravel-storyblok
Make Laravel and Storyblok work together beautifully.
Stars: ✭ 45 (+21.62%)
Mutual labels:  content-management

⚠️ Due to lack of time, we are looking for new project maintainers. Open an issue for info. The current stable release is 1.0.19 with many security fixes and patches than the latest from PageKit.


biskuit Banner

This project IS NOT discontinued. We are working on the conversion from uikit2 to uikit3. We are a small team and do this as a hobby.

Biskuit CMS

Discord

Bis[ku]it is a modular and lightweight CMS built with Symfony components and Vue.js.

This unofficial version of Pagekit was created to solve various problems. Mainly born for linuxhub.it, a portal that uses PageKit.

This project is taking a different path from that of official pagekit. The project is called Bis[ku]it and will not be compatible with future pagekit updates.

Feel free to use it.


Install from package

Go to the Releases section and download latest package.

WebHosting ready

Decompress data from archive to you web storage then follow instructions from browser.

Classic (access to composer)

Decompress data from archive to your web path and run composer installation:

composer install

then follow instructions from browser.

Install from source

git clone https://github.com/biskuitorg/biskuit.git
cd biskuit-master

Install dependencies using composer and npm:

composer install
npm install

Continue installing from browser.

Nginx configuration (optional)

In Nginx the .htaccess files are not supported, below the instructions for the Nginx configuration:

location / {
    location ~* ^.+\.(jpeg|jpg|png|gif|bmp|ico|svg|css|js)$ {
        expires     max;
    }
    try_files $uri $uri/ /index.php$is_args$args;
}

location ~ ^/index\.php(/|$) {
    fastcgi_pass   YOUR_SOCK;
    fastcgi_split_path_info ^(.+\.php)(/.*)$;
    include /etc/nginx/fastcgi_params; # this may be different
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param HTTP_MOD_REWRITE On;
}

location ~ \.php$ {
    return 404;
}

Caddy 2 configuration (optional)

mydomain.ex {                                                             
        root * /full_path_to_biskuit                  
        php_fastcgi * unix//run/php-fpm/www.sock                          
        encode gzip                                                       
        file_server                                                       
}

CLI

Pagekit offers a set of commands to run usual tasks on the command line. You can see the available commands with

./biskuit --help

Documentation

You can read the documentation here.

Contributing

Finding bugs, sending pull requests, translating Pagekit or improving our docs - any contribution is welcome and highly appreciated. To get started, head over to our contribution guidelines. Thanks!

Dev version

You can try the new features from the dev branch.

Credits

Pagekit by YOOtheme MIT license
Half Dome Photo by Brendan Lynch / CC BY
Thanks to Ruvim Miksanskiy for cover wallpaper

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].