Dappify Builder is a multi-purpose web dApp builder CMS with composable modules, similar to “legos”, that users drag and drop into a canvas for a WYSIWYG experience. These modules are composable and interoperable meaning they can talk to each other. It uses GrapesJS as drag and drop editor. To better understand this concept check the image below
Generally any 'template system', that you'd find in various applications like CMS, is composed by the structure (HTML), style (CSS) and variables, which are then replaced with other templates and contents on server-side and rendered on client.
You can visit the live builder:
Dappify - http://dappify.com
Blocks | Style Manager | Layer Manager |
---|---|---|
Code Viewer | Asset Manager |
---|---|
TBD
Clone the repository and install all the necessary dependencies (yarn
is highly recommended)
$ git clone https://github.com/DappifyWeb3/builder.git
$ cd studio
$ yarn
Create .env
SKIP_PREFLIGHT_CHECK=true
NODE_PATH=src/
SKIP_PREFLIGHT_CHECK=true
REACT_APP_MIXPANEL_ID=<ID>
REACT_APP_MORALIS_APP_ID=<ID>
REACT_APP_MORALIS_SERVER_URL=<URL>
REACT_APP_HOST_ENV=local
REACT_APP_PROJECT_ID=<TEST_PROJECT_ID_MORALIS>
Add Tailwind via CDN import to parent project in header inside index.html
<script src="https://cdn.tailwindcss.com"></script>
Start the dev server
$ yarn start
Once the development server is started you should be able to reach the demo page (eg. http://localhost:8080
)
Check the getting started guide here: [Documentation]
API References could be found here: [API-Reference]
$ yarn test
- grapesjs-plugin-export - Export GrapesJS templates in a zip archive
- grapesjs-plugin-filestack - Add Filestack uploader in Asset Manager
- grapesjs-plugin-ckeditor - Replaces the built-in RTE with CKEditor
- grapesjs-aviary - Add the Aviary Image Editor (dismissed, use the plugin below instead)
- grapesjs-tui-image-editor - GrapesJS TOAST UI Image Editor
- grapesjs-blocks-basic - Basic set of blocks
- grapesjs-plugin-forms - Set of form components and blocks
- grapesjs-navbar - Simple navbar component
- grapesjs-component-countdown - Simple countdown component
-
grapesjs-style-gradient - Add
gradient
type input to the Style Manager -
grapesjs-style-filter - Add
filter
type input to the Style Manager - grapesjs-style-bg - Full-stack background style property type, with the possibility to add images, colors, and gradients
- grapesjs-blocks-flexbox - Add the flexbox block
- grapesjs-lory-slider - Slider component by using lory
- grapesjs-tabs - Simple tabs component
- grapesjs-tooltip - Simple, CSS only, tooltip component for GrapesJS
- grapesjs-custom-code - Embed custom code
- grapesjs-touch - Enable touch support
- grapesjs-indexeddb - Storage wrapper for IndexedDB
- grapesjs-firestore - Storage wrapper for Cloud Firestore
- grapesjs-parser-postcss - Custom CSS parser for GrapesJS by using PostCSS
- grapesjs-typed - Typed component made by wrapping Typed.js library
- grapesjs-preset-webpage - Webpage Builder
- grapesjs-preset-newsletter - Newsletter Builder
- grapesjs-mjml - Newsletter Builder with MJML components
Find out more about plugins here: Creating plugins