Starting and Running a Scrivito Project

Starting and Running a Scrivito Project

With Scrivito, the easiest way to start developing a web application is to clone the Scrivito Example App and tailor it to your needs. However, there’s more to web development than cloning a repository.

We’ll touch some aspects central to developing web applications with Scrivito here – from preparation to deployment – and, where appropriate, point you to in-depth articles in our documentation for further reading.

Preparation

Are JavaScript and React included in your web development repertoire?

Scrivito itself and the web apps built with it are fully based on JavaScript and React. Websites created with Scrivito are single-page apps, meaning that they run safely and fast in the visitor’s browser.

React is closely linked to JSX, a syntax extension that makes writing React-based apps easier by letting you use markup in your JS code. See Rendering Scrivito Page and Widget Markup with JSX to learn more.

Did you take the time to assess the Scrivito Example App as a starting point?

The Scrivito Example App is the perfect base for getting started because:

Or would you rather like to start off from a standard app (create-react-app)? See Adding Scrivito to Create-React-App for integrating an existing React app with Scrivito.

Implementation

Have you got your first wireframes and mockups ready for implementation?

If you have the basic layout of a page and want to implement it in a React environment, the main task usually is to modularize the layout and provide components for its parts. The header and footer, the main navigation, maybe a sidebar, and, of course the editable content area – all these should be isolated and turned into dedicated components.

With Scrivito, the diversity of web pages is taken account of by taylored page types and the components used to render them. For example, the homepage and standard pages usually include a main navigation, while landing pages don’t.

This applies analogously to any editable area to which content of different types can be added: columns, text, images, boxes, etc. With Scrivito, those types are represented as widgets.

You can create CMS page and widget types (commonly called CMS object and widget classes) through the Scrivito SDK. Ultimately, such types are React classes, fine-tuned to the special tasks they have in the user interface. The same applies to the React components for rendering pages and widgets. They, too, need to be connected to the Scrivito SDK to let them access content.

Is your website going to include forms or communicate with third-party services?

Web applications based on Scrivito are single-page apps running in the visitor’s browser. There’s several advantages to this (first and foremost: speed), but, when using services that require authentication, no remote server is there to hide sensitive data such as login credentials from curious users.

Such use cases can be solved with serverless computing (or serverless infrastructure) services such as AWS Lambda. They free you from having to set up and maintain your own infrastructure merely for accepting or processing form content, or using APIs requiring authentication.

SEO, social media integration

While on-site SEO can be accomplished primarily by following a set of recommendations dealing with site and URL structure, content consistency, site speed, indexing, and so forth, connecting your content to social media comes down to enriching pages with the required pieces of information and rendering social cards from them.

Going live

Deploying a Scrivito-based app without any preparatory effort is as simple as uploading the built app to the “Deployment” section in your Scrivito dashboard. This makes your app available on your scrivito.net subdomain.

Scrivito partners with Netlify. After claiming your Netlify website via your Scrivito dashboard, there’s a considerable number of deployment and automation options to choose from. To name just a few:

  • Drag/drop your project directory on the “Deploys” section of your site to have it built and published.
  • Set up continuous deployment from a branch of your Git repository (e.g. at GitHub) for staging or production.
  • Perform A/B tests from two branches.
  • Use outgoing webhooks to trigger an action or report a status on specific events during deployment.

In-place editing built in

Just in case you have been asking yourself why there’s no section about “Setting up content editing”: Every Scrivito-based app includes the UI for editing content in place, directly on the website. Just sit back and relax. :)

Allowing outbound traffic

If content editing takes place in an environment that restricts outbound traffic (e.g. by means of a firewall), make sure to whitelist the domains on which your hosted Scrivito-based app are made available (for editing or staging purposes), plus these:

my.scrivito.com

For authenticating editors or visitors.


scrivito.com

Provides the documentation the user interface links to.


cdn1.scrvt.com, cdn2.scrvt.com, cdn3.scrvt.com

CDN URL for binary content such as images, videos, PDF files, etc.


assets.scrivito.com

Assets (images, stylesheets) used by Scrivito’s user interface.


api.scrivito.com

The endpoint for communicating with Scrivito’s backend.