Skip to content

Commit cc327a6

Browse files
committed
Merge branch 'dev'
2 parents f49cf0f + 7d74a6e commit cc327a6

File tree

468 files changed

+26129
-17346
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

468 files changed

+26129
-17346
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 4
9+
trim_trailing_whitespace = true
10+
11+
[*.{js,json}]
12+
indent_style = space
13+
indent_size = 2

.env.example.php

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?php
2+
3+
return [
4+
'APP_DEBUG' => getenv('APP_DEBUG') ?: false,
5+
'DB_DRIVER' => 'mysql',
6+
'DB_HOST' => 'localhost',
7+
'DB_DATABASE' => 'madison',
8+
'DB_USERNAME' => 'homestead',
9+
'DB_PASSWORD' => 'secret',
10+
11+
'MAIL_DRIVER' => 'smtp',
12+
'MAIL_HOST' => 'mailtrap.io',
13+
'MAIL_PORT' => '2525',
14+
'MAIL_USERNAME' => 'null',
15+
'MAIL_PASSWORD' => 'null',
16+
'MAIL_FROM_ADDRESS' => 'user@mail.com',
17+
'MAIL_FROM_NAME' => 'user',
18+
19+
'ADMIN_EMAIL' => 'admin@example.com',
20+
'ADMIN_PASSWORD' => 'secret',
21+
22+
'FB_CLIENT_ID' => '',
23+
'FB_CLIENT_SECRET' => '',
24+
'TW_CLIENT_ID' => '',
25+
'TW_CLIENT_SECRET' => '',
26+
'LI_CLIENT_ID' => '',
27+
'LI_CLIENT_SECRET' => '',
28+
29+
//This is the uservoice javascript file hash in the UV uv.src embed code
30+
//Used as such: uv.src = '//widget.uservoice.com/' + uservoiceHash + '.js';
31+
'USERVOICE' => '',
32+
33+
//Your Google Analytics account (eg. 'UA-00000000-0')
34+
'GA' => '',
35+
36+
];

.gitignore

Lines changed: 22 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,31 @@
1-
VagrantConfig.json
1+
# Laravel
22
bootstrap/compiled.php
3-
public/.sass-cache
3+
vendor/
4+
5+
# Configuration
6+
app/config/local
7+
.env.*.php
8+
.env.php
9+
!.env.example.php
10+
11+
# Assets
12+
node_modules
13+
.sass-cache
14+
public/.sas-cache
415
public/sass/.sass-cache
516
public/private/*
617
public/bower_components/
7-
app/config/creds.php
8-
app/config/oauth_creds.php
9-
app/config/smtp.php
10-
app/config/remote.php
11-
app/config/socials.php
12-
app/config/local/
13-
composer.lock
14-
notified.yml
15-
/vendor/*
16-
node_modules/
18+
public/img/doc*
19+
20+
# Vagrant
21+
VagrantConfig.json
22+
.vagrant/
23+
public/.htaccess
24+
25+
# OS
1726
shared
27+
.settings/
1828
.DS_Store
1929
.buildpath
2030
.project
21-
.settings/
22-
.sass-cache
23-
.env*
2431
.tmp
25-
26-
public/js/angular/directives-ck.js
27-
28-
public/js/angular/controllers-ck.js
29-
30-
public/js/angular/app-ck.js
31-
32-
public/js/madison-ck.js
33-
34-
public/sass/config.rb
35-
36-
public/sass/ie.css
37-
38-
public/sass/print.css
39-
40-
public/sass/screen.css
41-
42-
public/sass/style.css
43-
44-
.vagrant/machines/default/virtualbox/id
45-
46-
.vagrant/machines/default/virtualbox/action_set_name
47-
48-
.vagrant/machines/default/virtualbox/action_provision

.jscsrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"preset": "jquery"
3+
}

.styleci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
preset: psr2
2+
3+
disabled:
4+
- short_array_syntax

0 commit comments

Comments
 (0)