Requirements
Overview
You need an existing Angular application, or you can create a new one in order to use Scully.
Scully Requirements
- Angular versions: v8.x.x and v9.x.x
- Node.js: 10 or higher.
- Chromium: IMPORTANT: Scully uses Chromium. Therefore, your Operating System, as well as its administrator rights must allow its installation and execution.
Creating a New Angular Application
Install the Angular CLI globally with the following command:
npm install -g @angular/cli
Then, create a new application.
ng new my-scully-app
Add Router Modules
Add a router module with the following command:
IMPORTANT: Scully depends on the application's router module in order to generate the website's pages
ng generate module app-routing --flat --module=app
Find more info about the Angular CLI here 👉 angular.io/cli