- Preparing for open source
This commit is contained in:
parent
fd3d39ab38
commit
df2cfa7c39
19
.env.example
19
.env.example
|
|
@ -1,6 +1,6 @@
|
|||
APP_ENV=production
|
||||
APP_DEBUG=true
|
||||
APP_URL=http://dev.attendize.com
|
||||
APP_DEBUG=false
|
||||
APP_URL=
|
||||
APP_CIPHER=rijndael-128
|
||||
APP_KEY=SomeRandomString
|
||||
APP_TIMEZONE
|
||||
|
|
@ -8,17 +8,18 @@ APP_TIMEZONE
|
|||
DB_TYPE=mysql
|
||||
DB_HOST=localhost
|
||||
DB_DATABASE=attendize
|
||||
DB_USERNAME
|
||||
DB_PASSWORD
|
||||
DB_USERNAME=
|
||||
DB_PASSWORD=
|
||||
|
||||
MAIL_DRIVER=smtp
|
||||
MAIL_PORT=587
|
||||
MAIL_ENCRYPTION=tls
|
||||
MAIL_HOST=smtp.mandrillapp.com
|
||||
MAIL_FROM_ADDRESS=info@attendize.com
|
||||
MAIL_FROM_NAME=Attendize.com
|
||||
MAIL_PASSWORD=b038a015-8162-4a7a-bb8b-abb63fa7c112
|
||||
MAIL_USERNAME=dave.m.earley@gmail.com
|
||||
MAIL_HOST=
|
||||
MAIL_FROM_ADDRESS=
|
||||
MAIL_FROM_NAME=
|
||||
MAIL_PASSWORD=
|
||||
MAIL_USERNAME=
|
||||
|
||||
GOOGLE_ANALYTICS_ID=
|
||||
|
||||
LOG=single
|
||||
|
|
@ -51,7 +51,6 @@ module.exports = function(grunt) {
|
|||
'./public/vendor/jquery-form/jquery.form.js',
|
||||
'./public/vendor/humane-js/humane.js',
|
||||
'./public/vendor/RRSSB/js/rrssb.js',
|
||||
'./public/vendor/bootstrap-touchspin/dist/jquery.bootstrap-touchspin.js',
|
||||
'./public/vendor/curioussolutions-datetimepicker/dist/DateTimePicker.js',
|
||||
'./public/assets/javascript/app.js'
|
||||
],
|
||||
|
|
|
|||
10
bower.json
10
bower.json
|
|
@ -17,22 +17,14 @@
|
|||
"dependencies": {
|
||||
"bootstrap": "~3.2.0",
|
||||
"curioussolutions-datetimepicker": "~0.1.1",
|
||||
"humane-js": "~3.2.0",
|
||||
"chartjs": "~0.2.0",
|
||||
"humane-js": "~3.2.0",
|
||||
"geocomplete": "~1.6.4",
|
||||
"wysiwyg-editor": "~1.2.3",
|
||||
"modernizr": "~2.8.3",
|
||||
"jquery-form": "malsup/form#~3.46.0",
|
||||
"RRSSB": "~1.6.0",
|
||||
"jquery-backstretch": "~2.0.4",
|
||||
"flot": "~0.8.3",
|
||||
"morrisjs": "~0.5.1",
|
||||
"jquery.countdown": "~2.0.4",
|
||||
"fontawesome": "~4.2.0",
|
||||
"jquery-fastLiveFilter": "awbush/jquery-fastLiveFilter#~1.0.3",
|
||||
"hint.css": "~1.3.3",
|
||||
"wysihtml": "~0.4.17",
|
||||
"bootstrap-touchspin": "~3.0.1",
|
||||
"simplemde": "~1.8.1"
|
||||
},
|
||||
"resolutions": {
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
|
@ -34,7 +34,6 @@
|
|||
@import (inline) "../../vendor/RRSSB/css/rrssb.css";
|
||||
@import (inline) "../../vendor/humane-js/themes/flatty.css";
|
||||
@import (inline) "../../vendor/curioussolutions-datetimepicker/dist/DateTimePicker.min.css";
|
||||
@import (inline) "../../vendor/bootstrap-touchspin/dist/jquery.bootstrap-touchspin.css";
|
||||
|
||||
|
||||
@import "custom.less";
|
||||
|
|
|
|||
|
|
@ -1,49 +0,0 @@
|
|||
{!! HTML::script('vendor/simplemde/dist/simplemde.min.js') !!}
|
||||
{!! HTML::style('vendor/simplemde/dist/simplemde.min.css') !!}
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
$(function() {
|
||||
|
||||
|
||||
try {
|
||||
$('.geocomplete').geocomplete({
|
||||
details: "form.gf",
|
||||
types: ["geocode", "establishment"]
|
||||
}).bind("geocode:result", function(event, result) {
|
||||
console.log(result);
|
||||
}, 1000);
|
||||
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
|
||||
var simplemde = new SimpleMDE({
|
||||
element: $(".ediatble")[0],
|
||||
spellChecker: false,
|
||||
status: false
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
<style>
|
||||
.editor-toolbar {
|
||||
border-radius: 0 !important;
|
||||
}
|
||||
.CodeMirror, .CodeMirror-scroll {
|
||||
min-height: 100px !important;
|
||||
}
|
||||
|
||||
.create_organiser, .address-manual {
|
||||
padding: 10px;
|
||||
border: 1px solid #ddd;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
background-color: #FAFAFA;
|
||||
}
|
||||
|
||||
.in-form-link {
|
||||
display: block; padding: 5px;margin-bottom: 5px;padding-left: 0;
|
||||
}
|
||||
</style>
|
||||
|
|
@ -1,20 +1,20 @@
|
|||
<script>
|
||||
window.fbAsyncInit = function() {
|
||||
FB.init({
|
||||
appId: '{{FACEBOOK_APP_KEY}}',
|
||||
xfbml: true,
|
||||
version: 'v2.1'
|
||||
});
|
||||
};
|
||||
{{--window.fbAsyncInit = function() {--}}
|
||||
{{--FB.init({--}}
|
||||
{{--appId: '{{FACEBOOK_APP_KEY}}',--}}
|
||||
{{--xfbml: true,--}}
|
||||
{{--version: 'v2.1'--}}
|
||||
{{--});--}}
|
||||
{{--};--}}
|
||||
|
||||
(function(d, s, id) {
|
||||
var js, fjs = d.getElementsByTagName(s)[0];
|
||||
if (d.getElementById(id)) {
|
||||
return;
|
||||
}
|
||||
js = d.createElement(s);
|
||||
js.id = id;
|
||||
js.src = "//connect.facebook.net/en_US/sdk.js";
|
||||
fjs.parentNode.insertBefore(js, fjs);
|
||||
}(document, 'script', 'facebook-jssdk'));
|
||||
{{--(function(d, s, id) {--}}
|
||||
{{--var js, fjs = d.getElementsByTagName(s)[0];--}}
|
||||
{{--if (d.getElementById(id)) {--}}
|
||||
{{--return;--}}
|
||||
{{--}--}}
|
||||
{{--js = d.createElement(s);--}}
|
||||
{{--js.id = id;--}}
|
||||
{{--js.src = "//connect.facebook.net/en_US/sdk.js";--}}
|
||||
{{--fjs.parentNode.insertBefore(js, fjs);--}}
|
||||
{{--}(document, 'script', 'facebook-jssdk'));--}}
|
||||
</script>
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
m.parentNode.insertBefore(a, m)
|
||||
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
|
||||
|
||||
ga('create', 'UA-29387038-3', 'auto');
|
||||
ga('create', '{{env('GOOGLE_ANALYTICS_ID')}}', 'auto');
|
||||
ga('require', 'displayfeatures');
|
||||
ga('send', 'pageview');
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue