Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
twf-nikhila committed Sep 2, 2019
0 parents commit fbb63a9
Show file tree
Hide file tree
Showing 408 changed files with 86,045 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
APP_NAME=ProjectCamp
APP_TITLE="ProjectCamp"
APP_ENV=live
APP_KEY=base64:TzMVyzW6ROOD4Zk22mZZGq4oqISupJ51b/m/c9Ntw6E=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret

BROADCAST_DRIVER=log
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync

REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379

MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null

PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=

FILE_DOWNLOAD_SECRET=yourRandomStringHere

ENABLE_CLIENT_SIGNUP=
6 changes: 6 additions & 0 deletions .env.travis
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
APP_ENV=testing
APP_KEY=SomeRandomString

CACHE_DRIVER=array
SESSION_DRIVER=array
QUEUE_DRIVER=sync
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* text=auto
*.css linguist-vendored
*.scss linguist-vendored
*.js linguist-vendored
CHANGELOG.md export-ignore
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/node_modules
/public/hot
/public/uploads
/public/css
/storage/*.key
/vendor
/.idea
/.vagrant
Homestead.json
Homestead.yaml
npm-debug.log
yarn-error.log
.env
.notes
/public/mix-manifest.json
.php_cs.cache
npm-debug.log*
5 changes: 5 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<IfModule mod_rewrite.c>
RewriteEngine On

RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
20 changes: 20 additions & 0 deletions .php_cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

$finder = PhpCsFixer\Finder::create()
->notPath('vendor')
->notPath('bootstrap')
->notPath('storage')
->notPath('_ide_helper.php')
->notPath('app/Components')
->in(__DIR__)
->name('*.php')
->notName('*.blade.php');

return PhpCsFixer\Config::create()
->setRules([
'@PSR2' => true,
'array_syntax' => ['syntax' => 'short'],
'ordered_imports' => ['sortAlgorithm' => 'alpha'],
'no_unused_imports' => true,
])
->setFinder($finder);
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"printWidth": 100,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5"
}
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: php

php:
- 7.1

before_script:
- cp .env.travis .env
- composer self-update
- composer install --no-interaction

script:
- php artisan key:generate
- vendor/bin/phpunit
Loading

0 comments on commit fbb63a9

Please sign in to comment.