Skip to content

Commit

Permalink
Deploy to GitHub Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
githubsaturn committed Jul 21, 2024
1 parent 1be4b1b commit 369a505
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion forcebuild.date
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Sun Jul 21 16:31:08 UTC 2024
Sun Jul 21 16:47:46 UTC 2024
2 changes: 1 addition & 1 deletion v2/apps/formbricks.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"captainVersion":2,"dockerCompose":{"services":{"$$cap_appname-db":{"image":"postgres:$$cap_postgres_version","volumes":["$$cap_appname-db-data:/var/lib/postgresql/data"],"restart":"unless-stopped","environment":{"POSTGRES_USER":"formbricks","POSTGRES_PASSWORD":"$$cap_postgres_password","POSTGRES_DB":"$$cap_postgres_db"},"notExposeAsWebApp":true},"$$cap_appname":{"image":"formbricks/formbricks:$$cap_formbricks_tag","depends_on":["$$cap_appname-db"],"restart":"unless-stopped","environment":{"DATABASE_URL":"postgres://formbricks:$$cap_postgres_password@srv-captain--$$cap_appname-db/$$cap_postgres_db?sslmode=disable","WEBAPP_URL":"https://$$cap_appname.$$cap_root_domain/","NEXTAUTH_SECRET":"$$cap_gen_random_hex(32)","NEXTAUTH_URL":"https://$$cap_appname.$$cap_root_domain/","ENCRYPTION_KEY":"$$cap_gen_random_hex(64)","EMAIL_VERIFICATION_DISABLED":0},"containerHttpPort":"3000"}}},"variables":[{"id":"$$cap_postgres_version","label":"Postgres Version","defaultValue":"13.1"},{"id":"$$cap_postgres_db","label":"Postgres DB","defaultValue":"formbricks"},{"id":"$$cap_postgres_password","label":"Postgres Password","defaultValue":"$$cap_gen_random_hex(16)","validRegex":"/^(?=.*\\d).{10,}$/"},{"id":"$$cap_formbricks_tag","label":"Formbricks Version","defaultValue":"2.1.1","description":"Check out our docker page for the valid tags https://hub.docker.com/r/formbricks/formbricks/tags"}],"instructions":{"start":"Formbricks - The Open Source Survey & Experience Management solution for fast growing companies For more info visit https://formbricks.com/","end":"Formbricks has been successfully deployed!\nEmail verification has been enabled by default. You can disable it by setting EMAIL_VERIFICATION_DISABLED to 1 in the environment variables.\nApp is available as http://$$cap_appname.$$cap_root_domain"},"displayName":"Formbricks","isOfficial":true,"description":"Formbricks - The Open Source Survey & Experience Management solution for fast growing companies","documentation":"This docker-compose reference is at https://github.com/formbricks/formbricks/blob/main/docker/docker-compose.yml"}
{"captainVersion":2,"dockerCompose":{"services":{"$$cap_appname-db":{"image":"postgres:$$cap_postgres_version","volumes":["$$cap_appname-db-data:/var/lib/postgresql/data"],"restart":"unless-stopped","environment":{"POSTGRES_USER":"formbricks","POSTGRES_PASSWORD":"$$cap_postgres_password","POSTGRES_DB":"$$cap_postgres_db"},"notExposeAsWebApp":true},"$$cap_appname":{"image":"formbricks/formbricks:$$cap_formbricks_tag","depends_on":["$$cap_appname-db"],"restart":"unless-stopped","environment":{"DATABASE_URL":"postgres://formbricks:$$cap_postgres_password@srv-captain--$$cap_appname-db/$$cap_postgres_db?sslmode=disable","WEBAPP_URL":"https://$$cap_appname.$$cap_root_domain/","NEXTAUTH_SECRET":"$$cap_gen_random_hex(32)","NEXTAUTH_URL":"https://$$cap_appname.$$cap_root_domain/","ENCRYPTION_KEY":"$$cap_gen_random_hex(64)","EMAIL_VERIFICATION_DISABLED":"$$cap_email_verification_disabled","MAIL_FROM":"$$cap_mail_from","SMTP_HOST":"$$cap_smtp_host","SMTP_PORT":"$$cap_smtp_port","SMTP_SECURE_ENABLED":"$$cap_smtp_secure_enabled","SMTP_USER":"$$cap_smtp_user","SMTP_PASSWORD":"$$cap_smtp_password","PASSWORD_RESET_DISABLED":"$$cap_password_reset_disabled","SIGNUP_DISABLED":"$$cap_signup_disabled","INVITE_DISABLED":"$$cap_invite_disabled"},"containerHttpPort":"3000"}}},"variables":[{"id":"$$cap_postgres_version","label":"Postgres Version","defaultValue":13.1},{"id":"$$cap_postgres_db","label":"Postgres DB","defaultValue":"formbricks"},{"id":"$$cap_postgres_password","label":"Postgres Password","defaultValue":"$$cap_gen_random_hex(16)","validRegex":"/^(?=.*\\d).{10,}$/"},{"id":"$$cap_formbricks_tag","label":"Formbricks Version","defaultValue":"2.1.1","description":"Check out our docker page for the valid tags https://hub.docker.com/r/formbricks/formbricks/tags"},{"id":"$$cap_email_verification_disabled","label":"Email Verification Disabled","description":"Disable email verification for new accounts. Set to 1 to disable, 0 to enable. Requires SMTP settings to be configured if enabled.","defaultValue":0},{"id":"$$cap_mail_from","label":"Mail From","description":"The email address to use as the sender for outgoing emails. Delete variable to disable email functionality.","defaultValue":"[email protected]"},{"id":"$$cap_smtp_host","label":"SMTP Host","description":"The hostname of your SMTP server. Delete variable to disable email functionality.","defaultValue":"smtp.example_server_address.example.com"},{"id":"$$cap_smtp_port","label":"SMTP Port","description":"The port of your SMTP server. Typically 587 for TLS or 465 for SSL.","defaultValue":465},{"id":"$$cap_smtp_secure_enabled","label":"SMTP Secure Enabled","description":"Enable SMTP_SECURE_ENABLED for TLS (port 465). Set to 1 to enable, 0 to disable.","defaultValue":1},{"id":"$$cap_smtp_user","label":"SMTP User","description":"The username for your SMTP server. Delete variable to disable email functionality.","defaultValue":"[email protected]"},{"id":"$$cap_smtp_password","label":"SMTP Password","description":"The password for your SMTP server. Delete variable to disable email functionality.","defaultValue":"a_secure_password"},{"id":"$$cap_password_reset_disabled","label":"Password Reset Disabled","description":"Disable the ability to reset passwords. Set to 1 to disable, 0 to enable. Requires SMTP settings to be configured if enabled.","defaultValue":"1"},{"id":"$$cap_signup_disabled","label":"Signup Disabled","description":"Disable the ability for new users to create an account. Set to 1 to disable, 0 to enable.","defaultValue":"1"},{"id":"$$cap_invite_disabled","label":"Invite Disabled","description":"Disable the ability for invited users to create an account. Set to 1 to disable, 0 to enable.","defaultValue":"0"}],"instructions":{"start":"Formbricks - The Open Source Survey & Experience Management solution for fast growing companies For more info visit https://formbricks.com/","end":"Formbricks has been successfully deployed!\nEmail verification is enabled by default. You can disable it by setting EMAIL_VERIFICATION_DISABLED to 1 in the environment variables.\nApp is available as http://$$cap_appname.$$cap_root_domain"},"displayName":"Formbricks","isOfficial":true,"description":"Formbricks - The Open Source Survey & Experience Management solution for fast growing companies","documentation":"This docker-compose reference is at https://github.com/formbricks/formbricks/blob/main/docker/docker-compose.yml"}
2 changes: 1 addition & 1 deletion v3/apps/formbricks
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"captainVersion":2,"dockerCompose":{"services":{"$$cap_appname-db":{"image":"postgres:$$cap_postgres_version","volumes":["$$cap_appname-db-data:/var/lib/postgresql/data"],"restart":"unless-stopped","environment":{"POSTGRES_USER":"formbricks","POSTGRES_PASSWORD":"$$cap_postgres_password","POSTGRES_DB":"$$cap_postgres_db"},"notExposeAsWebApp":true},"$$cap_appname":{"image":"formbricks/formbricks:$$cap_formbricks_tag","depends_on":["$$cap_appname-db"],"restart":"unless-stopped","environment":{"DATABASE_URL":"postgres://formbricks:$$cap_postgres_password@srv-captain--$$cap_appname-db/$$cap_postgres_db?sslmode=disable","WEBAPP_URL":"https://$$cap_appname.$$cap_root_domain/","NEXTAUTH_SECRET":"$$cap_gen_random_hex(32)","NEXTAUTH_URL":"https://$$cap_appname.$$cap_root_domain/","ENCRYPTION_KEY":"$$cap_gen_random_hex(64)","EMAIL_VERIFICATION_DISABLED":0},"containerHttpPort":"3000"}}},"variables":[{"id":"$$cap_postgres_version","label":"Postgres Version","defaultValue":"13.1"},{"id":"$$cap_postgres_db","label":"Postgres DB","defaultValue":"formbricks"},{"id":"$$cap_postgres_password","label":"Postgres Password","defaultValue":"$$cap_gen_random_hex(16)","validRegex":"/^(?=.*\\d).{10,}$/"},{"id":"$$cap_formbricks_tag","label":"Formbricks Version","defaultValue":"2.1.1","description":"Check out our docker page for the valid tags https://hub.docker.com/r/formbricks/formbricks/tags"}],"instructions":{"start":"Formbricks - The Open Source Survey & Experience Management solution for fast growing companies For more info visit https://formbricks.com/","end":"Formbricks has been successfully deployed!\nEmail verification has been enabled by default. You can disable it by setting EMAIL_VERIFICATION_DISABLED to 1 in the environment variables.\nApp is available as http://$$cap_appname.$$cap_root_domain"},"displayName":"Formbricks","isOfficial":true,"description":"Formbricks - The Open Source Survey & Experience Management solution for fast growing companies","documentation":"This docker-compose reference is at https://github.com/formbricks/formbricks/blob/main/docker/docker-compose.yml"}
{"captainVersion":2,"dockerCompose":{"services":{"$$cap_appname-db":{"image":"postgres:$$cap_postgres_version","volumes":["$$cap_appname-db-data:/var/lib/postgresql/data"],"restart":"unless-stopped","environment":{"POSTGRES_USER":"formbricks","POSTGRES_PASSWORD":"$$cap_postgres_password","POSTGRES_DB":"$$cap_postgres_db"},"notExposeAsWebApp":true},"$$cap_appname":{"image":"formbricks/formbricks:$$cap_formbricks_tag","depends_on":["$$cap_appname-db"],"restart":"unless-stopped","environment":{"DATABASE_URL":"postgres://formbricks:$$cap_postgres_password@srv-captain--$$cap_appname-db/$$cap_postgres_db?sslmode=disable","WEBAPP_URL":"https://$$cap_appname.$$cap_root_domain/","NEXTAUTH_SECRET":"$$cap_gen_random_hex(32)","NEXTAUTH_URL":"https://$$cap_appname.$$cap_root_domain/","ENCRYPTION_KEY":"$$cap_gen_random_hex(64)","EMAIL_VERIFICATION_DISABLED":"$$cap_email_verification_disabled","MAIL_FROM":"$$cap_mail_from","SMTP_HOST":"$$cap_smtp_host","SMTP_PORT":"$$cap_smtp_port","SMTP_SECURE_ENABLED":"$$cap_smtp_secure_enabled","SMTP_USER":"$$cap_smtp_user","SMTP_PASSWORD":"$$cap_smtp_password","PASSWORD_RESET_DISABLED":"$$cap_password_reset_disabled","SIGNUP_DISABLED":"$$cap_signup_disabled","INVITE_DISABLED":"$$cap_invite_disabled"},"containerHttpPort":"3000"}}},"variables":[{"id":"$$cap_postgres_version","label":"Postgres Version","defaultValue":13.1},{"id":"$$cap_postgres_db","label":"Postgres DB","defaultValue":"formbricks"},{"id":"$$cap_postgres_password","label":"Postgres Password","defaultValue":"$$cap_gen_random_hex(16)","validRegex":"/^(?=.*\\d).{10,}$/"},{"id":"$$cap_formbricks_tag","label":"Formbricks Version","defaultValue":"2.1.1","description":"Check out our docker page for the valid tags https://hub.docker.com/r/formbricks/formbricks/tags"},{"id":"$$cap_email_verification_disabled","label":"Email Verification Disabled","description":"Disable email verification for new accounts. Set to 1 to disable, 0 to enable. Requires SMTP settings to be configured if enabled.","defaultValue":0},{"id":"$$cap_mail_from","label":"Mail From","description":"The email address to use as the sender for outgoing emails. Delete variable to disable email functionality.","defaultValue":"[email protected]"},{"id":"$$cap_smtp_host","label":"SMTP Host","description":"The hostname of your SMTP server. Delete variable to disable email functionality.","defaultValue":"smtp.example_server_address.example.com"},{"id":"$$cap_smtp_port","label":"SMTP Port","description":"The port of your SMTP server. Typically 587 for TLS or 465 for SSL.","defaultValue":465},{"id":"$$cap_smtp_secure_enabled","label":"SMTP Secure Enabled","description":"Enable SMTP_SECURE_ENABLED for TLS (port 465). Set to 1 to enable, 0 to disable.","defaultValue":1},{"id":"$$cap_smtp_user","label":"SMTP User","description":"The username for your SMTP server. Delete variable to disable email functionality.","defaultValue":"[email protected]"},{"id":"$$cap_smtp_password","label":"SMTP Password","description":"The password for your SMTP server. Delete variable to disable email functionality.","defaultValue":"a_secure_password"},{"id":"$$cap_password_reset_disabled","label":"Password Reset Disabled","description":"Disable the ability to reset passwords. Set to 1 to disable, 0 to enable. Requires SMTP settings to be configured if enabled.","defaultValue":"1"},{"id":"$$cap_signup_disabled","label":"Signup Disabled","description":"Disable the ability for new users to create an account. Set to 1 to disable, 0 to enable.","defaultValue":"1"},{"id":"$$cap_invite_disabled","label":"Invite Disabled","description":"Disable the ability for invited users to create an account. Set to 1 to disable, 0 to enable.","defaultValue":"0"}],"instructions":{"start":"Formbricks - The Open Source Survey & Experience Management solution for fast growing companies For more info visit https://formbricks.com/","end":"Formbricks has been successfully deployed!\nEmail verification is enabled by default. You can disable it by setting EMAIL_VERIFICATION_DISABLED to 1 in the environment variables.\nApp is available as http://$$cap_appname.$$cap_root_domain"},"displayName":"Formbricks","isOfficial":true,"description":"Formbricks - The Open Source Survey & Experience Management solution for fast growing companies","documentation":"This docker-compose reference is at https://github.com/formbricks/formbricks/blob/main/docker/docker-compose.yml"}
2 changes: 1 addition & 1 deletion v4/apps/formbricks
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"captainVersion":4,"services":{"$$cap_appname-db":{"image":"postgres:$$cap_postgres_version","volumes":["$$cap_appname-db-data:/var/lib/postgresql/data"],"restart":"unless-stopped","environment":{"POSTGRES_USER":"formbricks","POSTGRES_PASSWORD":"$$cap_postgres_password","POSTGRES_DB":"$$cap_postgres_db"},"caproverExtra":{"notExposeAsWebApp":true}},"$$cap_appname":{"image":"formbricks/formbricks:$$cap_formbricks_tag","depends_on":["$$cap_appname-db"],"restart":"unless-stopped","environment":{"DATABASE_URL":"postgres://formbricks:$$cap_postgres_password@srv-captain--$$cap_appname-db/$$cap_postgres_db?sslmode=disable","WEBAPP_URL":"https://$$cap_appname.$$cap_root_domain/","NEXTAUTH_SECRET":"$$cap_gen_random_hex(32)","NEXTAUTH_URL":"https://$$cap_appname.$$cap_root_domain/","ENCRYPTION_KEY":"$$cap_gen_random_hex(64)","EMAIL_VERIFICATION_DISABLED":0},"caproverExtra":{"containerHttpPort":"3000"}}},"caproverOneClickApp":{"variables":[{"id":"$$cap_postgres_version","label":"Postgres Version","defaultValue":"13.1"},{"id":"$$cap_postgres_db","label":"Postgres DB","defaultValue":"formbricks"},{"id":"$$cap_postgres_password","label":"Postgres Password","defaultValue":"$$cap_gen_random_hex(16)","validRegex":"/^(?=.*\\d).{10,}$/"},{"id":"$$cap_formbricks_tag","label":"Formbricks Version","defaultValue":"2.1.1","description":"Check out our docker page for the valid tags https://hub.docker.com/r/formbricks/formbricks/tags"}],"instructions":{"start":"Formbricks - The Open Source Survey & Experience Management solution for fast growing companies For more info visit https://formbricks.com/","end":"Formbricks has been successfully deployed!\nEmail verification has been enabled by default. You can disable it by setting EMAIL_VERIFICATION_DISABLED to 1 in the environment variables.\nApp is available as http://$$cap_appname.$$cap_root_domain"},"displayName":"Formbricks","isOfficial":true,"description":"Formbricks - The Open Source Survey & Experience Management solution for fast growing companies","documentation":"This docker-compose reference is at https://github.com/formbricks/formbricks/blob/main/docker/docker-compose.yml"}}
{"captainVersion":4,"services":{"$$cap_appname-db":{"image":"postgres:$$cap_postgres_version","volumes":["$$cap_appname-db-data:/var/lib/postgresql/data"],"restart":"unless-stopped","environment":{"POSTGRES_USER":"formbricks","POSTGRES_PASSWORD":"$$cap_postgres_password","POSTGRES_DB":"$$cap_postgres_db"},"caproverExtra":{"notExposeAsWebApp":true}},"$$cap_appname":{"image":"formbricks/formbricks:$$cap_formbricks_tag","depends_on":["$$cap_appname-db"],"restart":"unless-stopped","environment":{"DATABASE_URL":"postgres://formbricks:$$cap_postgres_password@srv-captain--$$cap_appname-db/$$cap_postgres_db?sslmode=disable","WEBAPP_URL":"https://$$cap_appname.$$cap_root_domain/","NEXTAUTH_SECRET":"$$cap_gen_random_hex(32)","NEXTAUTH_URL":"https://$$cap_appname.$$cap_root_domain/","ENCRYPTION_KEY":"$$cap_gen_random_hex(64)","EMAIL_VERIFICATION_DISABLED":"$$cap_email_verification_disabled","MAIL_FROM":"$$cap_mail_from","SMTP_HOST":"$$cap_smtp_host","SMTP_PORT":"$$cap_smtp_port","SMTP_SECURE_ENABLED":"$$cap_smtp_secure_enabled","SMTP_USER":"$$cap_smtp_user","SMTP_PASSWORD":"$$cap_smtp_password","PASSWORD_RESET_DISABLED":"$$cap_password_reset_disabled","SIGNUP_DISABLED":"$$cap_signup_disabled","INVITE_DISABLED":"$$cap_invite_disabled"},"caproverExtra":{"containerHttpPort":"3000"}}},"caproverOneClickApp":{"variables":[{"id":"$$cap_postgres_version","label":"Postgres Version","defaultValue":13.1},{"id":"$$cap_postgres_db","label":"Postgres DB","defaultValue":"formbricks"},{"id":"$$cap_postgres_password","label":"Postgres Password","defaultValue":"$$cap_gen_random_hex(16)","validRegex":"/^(?=.*\\d).{10,}$/"},{"id":"$$cap_formbricks_tag","label":"Formbricks Version","defaultValue":"2.1.1","description":"Check out our docker page for the valid tags https://hub.docker.com/r/formbricks/formbricks/tags"},{"id":"$$cap_email_verification_disabled","label":"Email Verification Disabled","description":"Disable email verification for new accounts. Set to 1 to disable, 0 to enable. Requires SMTP settings to be configured if enabled.","defaultValue":0},{"id":"$$cap_mail_from","label":"Mail From","description":"The email address to use as the sender for outgoing emails. Delete variable to disable email functionality.","defaultValue":"[email protected]"},{"id":"$$cap_smtp_host","label":"SMTP Host","description":"The hostname of your SMTP server. Delete variable to disable email functionality.","defaultValue":"smtp.example_server_address.example.com"},{"id":"$$cap_smtp_port","label":"SMTP Port","description":"The port of your SMTP server. Typically 587 for TLS or 465 for SSL.","defaultValue":465},{"id":"$$cap_smtp_secure_enabled","label":"SMTP Secure Enabled","description":"Enable SMTP_SECURE_ENABLED for TLS (port 465). Set to 1 to enable, 0 to disable.","defaultValue":1},{"id":"$$cap_smtp_user","label":"SMTP User","description":"The username for your SMTP server. Delete variable to disable email functionality.","defaultValue":"[email protected]"},{"id":"$$cap_smtp_password","label":"SMTP Password","description":"The password for your SMTP server. Delete variable to disable email functionality.","defaultValue":"a_secure_password"},{"id":"$$cap_password_reset_disabled","label":"Password Reset Disabled","description":"Disable the ability to reset passwords. Set to 1 to disable, 0 to enable. Requires SMTP settings to be configured if enabled.","defaultValue":"1"},{"id":"$$cap_signup_disabled","label":"Signup Disabled","description":"Disable the ability for new users to create an account. Set to 1 to disable, 0 to enable.","defaultValue":"1"},{"id":"$$cap_invite_disabled","label":"Invite Disabled","description":"Disable the ability for invited users to create an account. Set to 1 to disable, 0 to enable.","defaultValue":"0"}],"instructions":{"start":"Formbricks - The Open Source Survey & Experience Management solution for fast growing companies For more info visit https://formbricks.com/","end":"Formbricks has been successfully deployed!\nEmail verification is enabled by default. You can disable it by setting EMAIL_VERIFICATION_DISABLED to 1 in the environment variables.\nApp is available as http://$$cap_appname.$$cap_root_domain"},"displayName":"Formbricks","isOfficial":true,"description":"Formbricks - The Open Source Survey & Experience Management solution for fast growing companies","documentation":"This docker-compose reference is at https://github.com/formbricks/formbricks/blob/main/docker/docker-compose.yml"}}

0 comments on commit 369a505

Please sign in to comment.