bubble-server/src/main/resources/message_templates/en_US/server/pre_auth/ResourceMessages.properties파일 보기
@@ -34,6 +34,19 @@ err.country.invalid=Country is invalid
err.parent.notFound=Parent account does not exist
err.accountInit.timeout=Timeout initializing new account
# Activation form
form_title_activation=Activate Bubble
field_label_description=Description
field_label_network_name=Network Name
field_label_dns_service=DNS Service
field_label_storage_service=Storage Service
form_section_title_dns=DNS
form_section_title_storage=Storage
form_section_title_domain=Domain
form_section_title_credentials=Credentials
form_section_title_config=Configuration
button_label_activate=Activate
# Login/Registration form
form_title_login=Login
field_label_username=Username
@@ -71,33 +84,63 @@ err.driverConfig.initFailure=Cloud driver failed to initialize properlyu
err.ec.param.invalid=Parameter is invalid
err.ec.fieldType.none_set=Field type was not set
# Driver names
# Cloud drivers
driver_bubble.cloud.authenticator.TOTPAuthenticatorDriver=TOTP Service
description_bubble.cloud.authenticator.TOTPAuthenticatorDriver=A TOTP authentication service that is compatible with common authenticators, like Google Authenticator. This service runs locally and does not use any cloud APIs.
driver_config_description_regions_bubble.cloud.compute.vultr.VultrDriver=Array of bubble.cloud.CloudRegion objects. Determines which regions are supported, and defines latitude/longitude to enable geo-aware decisions.
driver_config_sizes_description_regions_bubble.cloud.compute.vultr.VultrDriver=Array of bubble.cloud.compute.ComputeNodeSize objects. Determines which instance sizes are supported.
driver_config_config_description_regions_bubble.cloud.compute.vultr.VultrDriver=Array of configuration options in the form [ {name: "...", "value": ...} ] There must be one option named 'os' that contains the Operating System image to use when launching Bubbles.
driver_config__description_regions_bubble.cloud.compute.digitalocean.DigitalOceanDriver=Array of bubble.cloud.CloudRegion objects. Determines which regions are supported, and defines latitude/longitude to enable geo-aware decisions.
driver_config_sizes_description_bubble.cloud.compute.digitalocean.DigitalOceanDriver=Array of bubble.cloud.compute.ComputeNodeSize objects. Determines which instance sizes are supported.
driver_config_config_description_regions_bubble.cloud.compute.digitalocean.DigitalOceanDriver=Array of configuration options in the form [ {name: "...", "value": ...} ] There must be one option named 'os' that contains the Operating System image to use when launching Bubbles.
driver_bubble.cloud.dns.godaddy.GoDaddyDnsDriver=GoDaddy DNS
description_bubble.cloud.dns.godaddy.GoDaddyDnsDriver=Use <a href="https://www.godaddy.com/">GoDaddy</a> to manage DNS records for Bubbles
driver_credential_GODADDY_API_KEY_bubble.cloud.dns.godaddy.GoDaddyDnsDriver=GoDaddy API Key
driver_bubble.cloud.dns.route53.Route53DnsDriver=Amazon Route53 DNS
description_bubble.cloud.dns.route53.Route53DnsDriver=Use <a href="https://aws.amazon.com/route53/">Amazon Route53</a> to manage DNS records for Bubbles
driver_bubble.cloud.geoCode.google.GoogleGeoCodeDriver=Google Geocoding API
description_bubble.cloud.geoCode.google.GoogleGeoCodeDriver=Use the <a href="https://developers.google.com/maps/documentation/javascript/geocoding">Google Geocoding API</a> to convert place names to latitude/longitude.
driver_credential_apiKey_bubble.cloud.geoCode.google.GoogleGeoCodeDriver=Google API Key
description_bubble.cloud.geoLocation.maxmind.MaxMindDriver=Use the <a href="https://maxmind.com/">MaxMind</a> GeoIP database to resolve IP addresses to city/region/country. This services runs locally using a database file and does not use any cloud APIs, except to download the database file.
driver_credential_apiKey_bubble.cloud.geoLocation.maxmind.MaxMindDriver=MaxMind API Key
driver_config_description_url_bubble.cloud.geoLocation.maxmind.MaxMindDriver=URL to download the database file from. You can use [[apiKey]] in the URL, and it will be replaced with your MaxMind API Key when the download is made.
driver_config_description_file_bubble.cloud.geoLocation.maxmind.MaxMindDriver=A regular expression used to find the MaxMind database file within the downloaded ZIP file or tarball.
driver_bubble.cloud.geoTime.google.GoogleGeoTimeDriver=Google Time Zone API
description_bubble.cloud.geoTime.google.GoogleGeoTimeDriver=Use the <a href="https://developers.google.com/maps/documentation/timezone">Google Time Zone API</a> to resolve IP addresses to time zones.
driver_credential_apiKey_bubble.cloud.geoTime.google.GoogleGeoTimeDriver=Google API Key
description_bubble.cloud.payment.stripe.StripePaymentDriver=Allows payment for Account Plans using credit and debit cards via the <a href="https://stripe.com/">Stripe</a> payments service.
driver_credential_secretApiKey_bubble.cloud.payment.stripe.StripePaymentDriver=Stripe Secret API Key
driver_config_publicApiKey_bubble.cloud.payment.stripe.StripePaymentDriver=Stripe Public API Key
driver_config_description_publicApiKey_bubble.cloud.payment.stripe.StripePaymentDriver=Your Stripe Public API Key
description_bubble.cloud.storage.s3.S3StorageDriver=Supports storage for <a href="https://aws.amazon.com/s3/">Amazon S3</a>. Data is encrypted locally, S3 never sees unencrypted data.
driver_config_region_bubble.cloud.storage.s3.S3StorageDriver=AWS Region
driver_config_description_region_bubble.cloud.storage.s3.S3StorageDriver=The AWS Region to use. Must be a valid name in the AWS <a href="https://github.com/aws/aws-sdk-java/blob/master/aws-java-sdk-core/src/main/java/com/amazonaws/regions/Regions.java">Regions</a> enum class.
driver_config_bucket_bubble.cloud.storage.s3.S3StorageDriver=S3 Bucket Name
driver_config_description_bucket_bubble.cloud.storage.s3.S3StorageDriver=The name of the S3 bucket to use. The credentials provided in AWS Access Key and AWS Secret key must have permissions to read, write, and list objects in this bucket.
driver_config_description_prefix_bubble.cloud.storage.s3.S3StorageDriver=The bucket prefix (subdirectory) to use. All objects stored in S3 will be put under this prefix. This allows you to use the same S3 Bucket for multiple Bubbles, as long as they each use a distinct prefix.
driver_config_listFetchSize_bubble.cloud.storage.s3.S3StorageDriver=S3 List Fetch Size
driver_config_description_listFetchSize_bubble.cloud.storage.s3.S3StorageDriver=The "batch size" to use when making S3 list requests
description_bubble.cloud.storage.local.LocalStorageDriver=Supports local filesystem storage.
driver_config_baseDir_bubble.cloud.storage.local.LocalStorageDriver=Local Storage Base Directory
driver_config_description_baseDir_bubble.cloud.storage.local.LocalStorageDriver=Base directory to use for storage. Must be writeable by the user account running the Bubble API server. If not an absolute path, it is relative to the user account running the Bubble API server.
+ 2- 2
bubble-server/src/test/java/bubble/test/dev/BlankDevServerTest.java파일 보기
@@ -22,8 +22,8 @@ public class BlankDevServerTest extends BubbleModelTestBase {
super.onStart(server);
}
@Test public void runDevServer () throws Exception {
log.info("runDevServer: Bubble API server started and model initialized. You may now begin testing.");
@Test public void runBlankServer () throws Exception {
log.info("runBlankServer: Bubble API server started and model initialized. You may now begin testing.");