Is there a way to bootstrap a project in F# like h...
# general
p
Is there a way to bootstrap a project in F# like how we do for C#, Python and TS? Also is there any docs with examples in F#?
s
yes, you can bootstrap projects in F#. Run
pulumi new
, select
Show additional templates
and then select
aws-fsharp
or
azure-fsharp
.
for some examples, we have a repository with a few in F#. Look at https://github.com/pulumi/examples and search for
*-fs-*
as directory names.
p
you guys are so awesome thanks a lot!
🥰 1