The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

103 line
3.5 KiB

  1. {
  2. // name, password and description of the initial admin user
  3. "name": "root",
  4. "password": "REPLACE WITH YOUR ROOT PASSWORD",
  5. "description": "root user",
  6. "cloudConfigs" : {
  7. // You must configure at least one of these DNS services
  8. // Comment the other one out if you're not going to use it
  9. "Route53Dns" : {
  10. "credentials" : {
  11. "AWS_ACCESS_KEY_ID": "your_aws_access_key_id",
  12. "AWS_SECRET_KEY": "your_aws_secret_key"
  13. }
  14. },
  15. "GoDaddyDns" : {
  16. "credentials" : {
  17. "GODADDY_API_KEY": "your_godaddy_api_key",
  18. "GODADDY_API_SECRET": "your_godaddy_api_secret"
  19. }
  20. },
  21. // You must configure at least one of these Compute services
  22. // Comment the other one out if you're not going to use it
  23. "VultrCompute": {
  24. "credentials": {"API-Key": "your_vultr_api_key"}
  25. },
  26. "DigitalOceanCompute": {
  27. "credentials": {"apiKey": "your_digitalocean_api_key"}
  28. },
  29. // You must configure the AWS S3 Storage service in order to launch new Bubbles
  30. "S3Storage" : {
  31. "config": {
  32. // region must be a valid value from the Regions enum: https://github.com/aws/aws-sdk-java/blob/master/aws-java-sdk-core/src/main/java/com/amazonaws/regions/Regions.java
  33. "region": "US_EAST_1",
  34. "bucket": "must be a valid bucket name that the credentials can read/write/list/delete",
  35. "prefix": "", // optional: all paths for S3 operations will be prefixed with this path
  36. "listFetchSize": 100
  37. },
  38. "credentials" : {
  39. "AWS_ACCESS_KEY_ID": "your_aws_access_key_id",
  40. "AWS_SECRET_KEY": "your_aws_secret_key"
  41. }
  42. },
  43. // Required for TOTP-based authentication. Highly recommended.
  44. "TOTPAuthenticator": {},
  45. // OPTIONAL SERVICES
  46. // Comment out any services you have not configured
  47. // Required for sending emails
  48. "SmtpServer": {
  49. "config": {
  50. "tlsEnabled": true
  51. },
  52. "credentials": {
  53. "user": "your_smtp_username",
  54. "password": "your_smtp_password",
  55. "host": "your_smtp_server_hostname",
  56. "port": "your_smtp_server_port"
  57. }
  58. },
  59. // Required for sending SMS messages
  60. "TwilioSms": {
  61. "credentials": {
  62. "accountSID": "your_twilio_account_SID",
  63. "authToken": "your_twilio_auth_token",
  64. // text messages sent by Bubble will come "from" this phone number, must be in Twilio-compatible format
  65. "fromPhoneNumber": "your_twilio_from_number"
  66. }
  67. },
  68. // Required for locale and "nearest compute region" auto-detection
  69. "MaxMind": {
  70. "config": {
  71. // these values work for the free GeoLite database. you still have to specify an apiKey
  72. "url": "https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-City&license_key=[[apiKey]]&suffix=tar.gz",
  73. "file": "GeoLite2-City_20[\\\\d]{6}/GeoLite2-City\\\\.mmdb"
  74. },
  75. "credentials": {"apiKey": "your_maxmind_api_key"}
  76. },
  77. // Required for "nearest compute region" auto-detection
  78. "GoogleGeoCoder": {
  79. "credentials": {"apiKey": "your_google_api_key"}
  80. },
  81. // Required for timezone auto-detection
  82. "GoogleGeoTime": {
  83. "credentials": {"apiKey": "your_google_api_key"}
  84. }
  85. },
  86. // the domain that new Bubbles will be launched within
  87. "domain": {
  88. "publicDns": "Route53Dns or GoDaddyDns", // name of a DNS provider configured above
  89. "name": "example.com" // a domain name that you own, that is managed by the DNS provider named in `publicDns`
  90. }
  91. }