Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Commit

Permalink
feat: add Zola (#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
henrifrancois committed Jul 5, 2021
1 parent ab2bd2e commit 2f571d9
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/frameworks/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const FRAMEWORKS = [
require('./roots.json'),
require('./wintersmith.json'),
require('./cecil.json'),
require('./zola.json'),

// Front-end frameworks
require('./angular.json'),
Expand Down
22 changes: 22 additions & 0 deletions src/frameworks/zola.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"id": "zola",
"name": "Zola",
"category": "static_site_generator",
"detect": {
"npmDependencies": [],
"excludedNpmDependencies": [],
"configFiles": ["config.toml"]
},
"dev": {
"command": "zola serve",
"port": 1111,
"pollingStrategies": [{ "name": "TCP" }, { "name": "HTTP" }]
},
"build": {
"command": "zola build",
"directory": "public"
},
"env": {},
"plugins": []
}

0 comments on commit 2f571d9

Please sign in to comment.