Skip to content

Commit

Permalink
Graffiti fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
balat committed Aug 23, 2024
1 parent 91a090d commit 5a1388b
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions tutos/dev/manual/application.wiki
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ lines are drawn on both windows.
to the client:
* Module <<a_api project="eliom" subproject="server" | module Eliom_notif >>
(or <<a_api project="Ocsigen-start" subproject="server" | module Os_notif >>
(or <<a_api project="ocsigen-start" subproject="server" | module Os_notif >>
if you are using Ocsigen Start) provides a very simple way to send messages to
clients. It's probably the solution you will use most of the times.
* You can use <<a_api project="eliom" subproject="server"
Expand Down Expand Up @@ -861,8 +861,16 @@ opam install ocsigen-toolkit

Add package {{{ocsigen-toolkit.server}}} to the {{{libraries}}} section of your {{{dune}}} file, and {{{ocsigen-toolkit.client}}} to the {{{libraries}}} section of your {{{client/dune}}} file.

{{{
(libraries ... ocsigen-toolkit.server)
}}}
{{{
(libraries ... ocsigen-toolkit.client)
}}}

In {{{Makefile.options}}}, created by Eliom's distillery, add
{{{ocsigen-toolkit.server}}} to the {{{SERVER_PACKAGES}}}:
{{{ocsigen-toolkit.server}}} to the {{{SERVER_PACKAGES}}}.
This will be used to regenerate Ocsigen Server's configuration file.
<<code language="makefile"|
SERVER_PACKAGES := ... ocsigen-toolkit.server
>>
Expand Down

0 comments on commit 5a1388b

Please sign in to comment.