From 31436667b44857e59c0ce89809a22fcba161535e Mon Sep 17 00:00:00 2001 From: Manuel Meurer Date: Thu, 10 Oct 2024 22:06:31 +0200 Subject: [PATCH 1/2] fix .env format in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d5d26c7..3d71d77 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Rails application that allows you to create and manage conferences. You can use #### Feature Flags -You can enable features by using ENV variables. The ENV var key should follow the convention "#{feature_name}_ENABLED". For example, to enable the `litestream_backups` feature, add `ENV["LITESTREAM_BACKUP_ENABLED"]="true"` to your .env file. You can view all the available features in `app/models/feature.rb`. +You can enable features by using ENV variables. The ENV var key should follow the convention "#{feature_name}_ENABLED". For example, to enable the `litestream_backups` feature, add `LITESTREAM_BACKUP_ENABLED="true"` to your .env file. You can view all the available features in `app/models/feature.rb`. ## Deployment From ddd1f61035804239c11839e647ac6394d11d2b14 Mon Sep 17 00:00:00 2001 From: Luigi Rojas Date: Fri, 18 Oct 2024 15:58:14 -0600 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3d71d77..20a159a 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Rails application that allows you to create and manage conferences. You can use #### Feature Flags -You can enable features by using ENV variables. The ENV var key should follow the convention "#{feature_name}_ENABLED". For example, to enable the `litestream_backups` feature, add `LITESTREAM_BACKUP_ENABLED="true"` to your .env file. You can view all the available features in `app/models/feature.rb`. +You can enable features by using ENV variables. The ENV var key should follow the convention "#{feature_name}_ENABLED". For example, to enable the `litestream_backups` feature, add `LITESTREAM_BACKUP_ENABLED=true` to your .env file. You can view all the available features in `app/models/feature.rb`. ## Deployment