The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Yancy - A simple framework and editor for content-driven Mojolicious websites

VERSION

version 1.037

SYNOPSIS

    use Mojolicious::Lite;
    use Mojo::Pg; # Supported backends: Pg, MySQL, SQLite, DBIx::Class
    plugin Yancy => {
        backend => { Pg => Mojo::Pg->new( 'postgres:///myapp' ) },
        read_schema => 1,
    };

DESCRIPTION

Screenshot of list of Futurama characters
Screenshot of editing form for a person

Yancy is a simple content management system (CMS) for administering content in a database. Yancy accepts a configuration file that describes the data in the database and builds a website that lists all of the available data and allows a user to edit data, delete data, and add new data.

Yancy uses JSON Schema to define the data in the database. The schema is added to an OpenAPI specification which creates a REST API for your data.

Yancy can be run in a standalone mode (which can be placed behind a proxy), or can be embedded as a plugin into any application that uses the Mojolicious web framework.

Yancy can manage data in multiple databases using different backends (Yancy::Backend modules). Backends exist for Postgres via Mojo::Pg, MySQL via Mojo::mysql, SQLite via Mojo::SQLite, and DBIx::Class, a Perl ORM

Mojolicious Plugin

Yancy is primarily a Mojolicious plugin to ease development and management of Mojolicious applications. Yancy provides:

For information on how to use Yancy as a Mojolicious plugin, see Mojolicious::Plugin::Yancy.

Example Applications

The Yancy Git repository on Github includes some example applications you can use to help build your own websites. View the example application directory.

Yancy Plugins

Yancy comes with plugins to enhance your website.

More development will be happening here soon!

Standalone App

Yancy can also be run as a standalone app in the event one wants to develop applications solely using Mojolicious templates. For information on how to run Yancy as a standalone application, see Yancy::Help::Standalone.

REST API

This application creates a REST API using the standard OpenAPI API specification. The API spec document is located at /yancy/api.

CONFIGURATION

See Yancy::Help::Config for how to configure Yancy in both plugin and standalone mode.

BUNDLED PROJECTS

This project bundles some other projects with the following licenses:

  • jQuery (version 3.2.1) Copyright JS Foundation and other contributors (MIT License)

  • Bootstrap (version 4.3.1) Copyright 2011-2019 the Bootstrap Authors and Twitter, Inc. (MIT License)

  • Popper.js (version 1.13.0) Copyright 2017 Federico Zivolo (MIT License)

  • FontAwesome (version 4.7.0) Copyright Dave Gandy (SIL OFL 1.1 and MIT License)

  • Vue.js (version 2.5.3) Copyright 2013-2018, Yuxi (Evan) You (MIT License)

  • marked (version 0.3.12) Copyright 2011-2018, Christopher Jeffrey (MIT License)

The bundled versions of these modules may change. If you rely on these in your own app, be sure to watch the changelog for version updates.

SEE ALSO

JSON schema, Mojolicious

AUTHOR

Doug Bell <preaction@cpan.org>

CONTRIBUTORS

  • Ed J <mohawk2@users.noreply.github.com>

  • Mohammad S Anwar <mohammad.anwar@yahoo.com>

  • Rajesh Mallah <mallah.rajesh@gmail.com>

  • William Lindley <wlindley@wlindley.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2019 by Doug Bell.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.