Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 967 Bytes

File metadata and controls

41 lines (26 loc) · 967 Bytes
title Prerequisites
order 100
lang en

Prerequisites

In order to start using Scully, you need an existing Angular application with v8.x.x or v9.x.x.

IMPORTANT:

Scully depends on the application's router module in order to generate the website's pages. Your application must include a RouterModule.

You can create a new Angular 9 application by running the following command:

npx -p @angular/cli ng new my-scully-app --routing

If the above command fails, install the Angular CLI globally with the following command:

npm install -g @angular/cli

Then, create a new application.

ng new my-scully-app --routing

Find more info about the Angular CLI here 👉 angular.io/cli

IMPORTANT:

Scully uses Chromium. Therefore, your Operating System, as well as its administrator rights must allow its installation and execution.

Node version:

  • Node.js 10 or higher.