commit 3eaaa64be11725bfd6e7643cf43e67b9a3f60c5a
parent c0b2e46de96a50f5a594a268aed95afb9f445630
Author: Hugo Soucy <hsoucy@kronostechnologies.com>
Date: Tue, 11 Sep 2018 12:47:29 -0400
Add precious comments
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/ferron.lua b/ferron.lua
@@ -2,18 +2,18 @@
-- Ferron SSG
--
--- Init the Main Namespace
+-- App's Globals
+-- Init the main namespace
Ferron = {}
-
+-- Set a table for the site infos
Ferron.site = {}
+-- Set if the build need to be in devmode
Ferron.devmode = (arg[1] == "--dev" and true or false)
if Ferron.devmode == true then
inspect = require "inspect"
end
-inspect = require "inspect"
-
-- Ferron's Modules
local site = require "ferron.site"
local content = require "ferron.content"