I have a daml file with just one script
module User where
import Daml.Script
makeAdmin =
script do
admin <- allocateParty "Admin"
submit admin do
createCmd User with username = admin
template User with
username: Party
where
signatory username
key username: Party
maintainer key
...
Is there a way to execute the script any time I run daml start
?