Initial commit
This commit is contained in:
0
Application/Fixtures.sql
Normal file
0
Application/Fixtures.sql
Normal file
5
Application/Helper/Controller.hs
Normal file
5
Application/Helper/Controller.hs
Normal file
@ -0,0 +1,5 @@
|
||||
module Application.Helper.Controller where
|
||||
|
||||
import IHP.ControllerPrelude
|
||||
|
||||
-- Here you can add functions which are available in all your controllers
|
5
Application/Helper/View.hs
Normal file
5
Application/Helper/View.hs
Normal file
@ -0,0 +1,5 @@
|
||||
module Application.Helper.View where
|
||||
|
||||
import IHP.ViewPrelude
|
||||
|
||||
-- Here you can add functions which are available in all your views
|
1
Application/Schema.sql
Normal file
1
Application/Schema.sql
Normal file
@ -0,0 +1 @@
|
||||
-- Your database schema. Use the Schema Designer at http://localhost:8001/ to add some tables.
|
12
Application/Script/Prelude.hs
Normal file
12
Application/Script/Prelude.hs
Normal file
@ -0,0 +1,12 @@
|
||||
module Application.Script.Prelude
|
||||
( module IHP.ControllerPrelude
|
||||
, module Generated.Types
|
||||
, module IHP.Prelude
|
||||
, module IHP.ScriptSupport
|
||||
)
|
||||
where
|
||||
|
||||
import IHP.Prelude
|
||||
import IHP.ControllerPrelude
|
||||
import Generated.Types
|
||||
import IHP.ScriptSupport
|
Reference in New Issue
Block a user