Skip to content
This repository has been archived by the owner on Dec 10, 2019. It is now read-only.

Commit

Permalink
add configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
mangcoding committed Mar 29, 2017
1 parent a5c9dbe commit 719f80d
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .env
@@ -0,0 +1,26 @@
APP_ENV=local
APP_DEBUG=true
APP_KEY=yI02898fm3xRpF7w9RDj2jNw7moJJv41

DB_CONNECTION=mysql
DB_HOST=localhost
DB_DATABASE=databases
DB_USERNAME=root
DB_PASSWORD=
DB_DRIVER=mysql

CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync

REDIS_HOST=localhost
REDIS_PASSWORD=null
REDIS_PORT=6379

MAIL_DRIVER=smtp
MAIL_HOST=
MAIL_PORT=
MAIL_USERNAME=
MAIL_NAME=
MAIL_PASSWORD=
MAIL_ENCRYPTION=
3 changes: 3 additions & 0 deletions .gitattributes
@@ -0,0 +1,3 @@
* text=auto
*.css linguist-vendored
*.less linguist-vendored
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
/vendor
/node_modules
Homestead.yaml
Homestead.json
20 changes: 20 additions & 0 deletions .htaccess
@@ -0,0 +1,20 @@
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>

RewriteEngine On

# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]

# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
</IfModule>
2 changes: 2 additions & 0 deletions README.md
@@ -1 +1,3 @@
#mangcoding -cms

installastion and documentation <a href="http://www.blog.mangcoding.com/source-code-cms-laravel-multilanguage">KLIK DISINI</a>

0 comments on commit 719f80d

Please sign in to comment.