package sihl
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
The modular functional web framework
Install
dune-project
Dependency
Authors
Maintainers
Sources
sihl-0.1.1.tbz
sha256=eac58e5ee9c869aa3b0f0bcee936b01c53bf7fe1febb42edd607268dfb11f4e9
sha512=012b6cf1cf6af0966059761b4916ea8aa590aa8d5809a6f480cb17e23ee10c3b9245062c4f0cf9ad98ab950391c0827c9780999d39fa16a93f7aab4b12f9ab8c
doc/sihl.cmd/Cmd/index.html
Module CmdSource
Use this module to create your own command line commands in order to interact with the Sihl app.
Services can register command with the command service. This is why a lot of services have a dependency on it. All the built-in commands are contributed by individual services using this mechanism. Examples for those commands are:
migrateis registered by the migration service and it runs the migrationsstartis registered by the web server service and it starts the web servercreateadminis registered by the user service and it creates an admin user, useful to bootstrap your app so you have one user to log in
You can contribute your custom commands the same way to interact with your app through the CLI. This can be very handy for development and administration. You sometimes want to call services without going through the HTTP stack, authentication, validation and authorization layers.
Source
val make :
name:Base.string ->
?help:Base.string ->
description:Base.string ->
fn:fn ->
unit ->
tUsage
This is how the command createadmin is implemented:
let create_admin_cmd =
Cmd.make ~name:"createadmin" ~help:"<username> <email> <password>"
~description:"Create an admin user"
~fn:(fun args ->
match args with
| [ username; email; password ] ->
let ctx = Core.Ctx.empty |> DbService.add_pool in
User_service.create_admin ctx ~email ~password ~username:(Some username)
|> Lwt_result.map ignore
| _ -> Lwt_result.fail "Usage: <username> <email> <password>")
()
let _ =
App.(empty
|> with_services services
|> with_commands [ create_admin_cmd ]
|> run)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page