plone / volto-reference-backend

Volto Reference Backend

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Volto Reference Backend

Documentation

A training on how to create your own website using Volto is available as part of the Plone training at https://training.plone.org/voltohandson/index.html.

Installation

Prerequisites

Create Database

$ CREATE DATABASE volto;
$ CREATE USER volto WITH ENCRYPTED PASSWORD 'volto';
$ GRANT ALL PRIVILEGES ON DATABASE volto TO volto;
$ CREATE EXTENSION IF NOT EXISTS "uuid-ossp";

Make sure the volto user has the privileges to run the last command.

Install Dependencies

$ yarn

Development

Create DB structure

$ yarn migrate

Import dummy content

$ yarn seed

Run backend

$ yarn start

Testing

$ yarn test

License

MIT License. Copyrights hold the Plone Foundation. See LICENSE.md for details.

About

Volto Reference Backend

License:MIT License


Languages

Language:JavaScript 100.0%