Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cydrobolt/polr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChaoyi Zha <summermontreal@gmail.com>2016-01-19 05:00:35 +0300
committerChaoyi Zha <summermontreal@gmail.com>2016-01-19 05:00:35 +0300
commitd1d5393effb6fcc4799a2088f70f7a109d2f3f25 (patch)
tree24283096bf41406125709d2e92242ac965ffe999
parent7684dfeeb9cb4b596bb8951f5b27cdba908962d2 (diff)
Add missing env template2.0.0a2
-rw-r--r--resources/views/env.blade.php91
1 files changed, 91 insertions, 0 deletions
diff --git a/resources/views/env.blade.php b/resources/views/env.blade.php
new file mode 100644
index 0000000..4e5ae54
--- /dev/null
+++ b/resources/views/env.blade.php
@@ -0,0 +1,91 @@
+APP_ENV=production
+
+# Set to true if debugging
+APP_DEBUG=false
+
+# 32-character key (e.g 3EWBLwxTfh%*f&xRBqdGEIUVvn4%$Hfi)
+APP_KEY={{$APP_KEY}}
+
+# Your app's name (shown on interface)
+APP_NAME={{$APP_NAME}}
+
+# Protocol to access your app. e.g https://
+APP_PROTOCOL={{$APP_PROTOCOL}}
+
+# Your app's external address (e.g example.com)
+APP_ADDRESS={{$APP_ADDRESS}}
+
+# Your app's bootstrap stylesheet
+# e.g https://maxcdn.bootstrapcdn.com/bootswatch/3.3.5/flatly/bootstrap.min.css
+APP_STYLESHEET={{$APP_STYLESHEET}}
+
+# Set to today's date (e.g November 3, 2015)
+POLR_GENERATED_AT={{$POLR_GENERATED_AT}}
+
+# Set to true after running setup script
+# e.g true
+POLR_SETUP_RAN={{$POLR_SETUP_RAN}}
+
+DB_CONNECTION=mysql
+# Set to your DB host (e.g localhost)
+DB_HOST={{$DB_HOST}}
+# DB port (e.g 3306)
+DB_PORT={{$DB_PORT}}
+# Set to your DB name (e.g polr)
+DB_DATABASE={{$DB_DATABASE}}
+# DB credentials
+# e.g root
+DB_USERNAME={{$DB_USERNAME}}
+DB_PASSWORD={{$DB_PASSWORD}}
+
+# Polr Settings
+SETTING_PUBLIC_INTERFACE={{$ST_PUBLIC_INTERFACE}}
+
+# Set to true to allow signups, false to disable (e.g true/false)
+POLR_ALLOW_ACCT_CREATION={{$POLR_ALLOW_ACCT_CREATION}}
+
+# Set to true to require activation by email (e.g true/false)
+POLR_ACCT_ACTIVATION={{$POLR_ACCT_ACTIVATION}}
+
+SETTING_SHORTEN_PERMISSION={{$ST_SHORTEN_PERMISSION}}
+SETTING_INDEX_REDIRECT={{$ST_INDEX_REDIRECT}}
+SETTING_PASSWORD_RECOV={{$ST_PASSWORD_RECOV}}
+
+@if($MAIL_ENABLED)
+MAIL_DRIVER=smtp
+# e.g mailtrap.io
+MAIL_HOST={{$MAIL_HOST}}
+# e.g 2525
+MAIL_PORT={{$MAIL_PORT}}
+MAIL_USERNAME={{$MAIL_USERNAME}}
+MAIL_PASSWORD={{$MAIL_PASSWORD}}
+# e.g noreply@example.com
+MAIL_FROM_ADDRESS={{$MAIL_FROM_ADDRESS}}
+MAIL_FROM_NAME={{$MAIL_FROM_NAME}}
+@endif
+
+APP_LOCALE=en
+APP_FALLBACK_LOCALE=en
+
+CACHE_DRIVER=file
+SESSION_DRIVER=file
+QUEUE_DRIVER=database
+
+# FILESYSTEM_DRIVER=local
+# FILESYSTEM_CLOUD=s3
+
+# S3_KEY=null
+# S3_SECRET=null
+# S3_REGION=null
+# S3_BUCKET=null
+
+# RACKSPACE_USERNAME=null
+# RACKSPACE_KEY=null
+# RACKSPACE_CONTAINER=null
+# RACKSPACE_REGION=null
+
+# Do not touch
+POLR_RELDATE={{env('VERSION_RELMONTH')}} {{env('VERSION_RELDAY')}}, {{env('VERSION_RELYEAR')}}
+POLR_VERSION={{env('VERSION')}}
+POLR_BASE={{$ST_BASE}}
+POLR_SECRET_BYTES=2