Forem Creators and Builders 🌱

Discussion on: Issue: Where to get"New Forem Secret" for admin account set up

Collapse
 
andy profile image
Andy Zhao

Hi @gurulhc ! I believe you'll need to set your ENV variable FOREM_OWNER_SECRET to something. We recommend setting the key to a randomly generated string, for example through rails console:

SecureRandom.base64(64)
#=> "some_64_character_string"
Enter fullscreen mode Exit fullscreen mode