After copying the project, rename the solution to your own name:
- Rename
suave-service-template.sln
to whatever you wish and changebuild
target inbuild.fsx
to use your new file name
To add a new service to the project:
-
Add services as
fsx
files insrc/servers
and add them tosrc/services.fsproj
(find the section containingdemo.fsx
). The order matter. -
Go to
release.fs
and add your services to the compiled project (to be run on Azure) by modifying the[ "demo", Services.Demo.app ]
part of the code.