Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Production #10

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1,234 changes: 1,234 additions & 0 deletions config.codekit

Large diffs are not rendered by default.

57 changes: 40 additions & 17 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Documentation can be found at http://support.ghost.org/config/

var path = require('path'),
websiteUrl = process.env.websiteUrl,
websiteUrl = process.env.localhost,
websiteUrlSSL = process.env.websiteUrlSSL,
config;

Expand All @@ -29,44 +29,58 @@ config = {
// ### Development **(default)**
development: {
// The url to use when providing links to the site, E.g. in RSS and email.
url: websiteUrl,
// Change this to your Ghost blog's published URL.
url: 'http://localhost:2368',

// Example refferer policy
// Visit https://www.w3.org/TR/referrer-policy/ for instructions
// default 'origin-when-cross-origin',
// referrerPolicy: 'origin-when-cross-origin',

// Example mail config
// Visit http://support.ghost.org/mail for instructions
mail: {
transport: 'SMTP',
options: {
service: process.env.emailService,
auth: {
user: process.env.emailUsername, // mailgun username
pass: process.env.emailPassword // mailgun password
}
}
},
// ```
// mail: {
// transport: 'SMTP',
// options: {
// service: 'Mailgun',
// auth: {
// user: '', // mailgun username
// pass: '' // mailgun password
// }
// }
// },
// ```

// #### Database
// Ghost supports sqlite3 (default), MySQL & PostgreSQL
database: {
client: 'sqlite3',
connection: {
filename: path.join(__dirname, '/content/data/ghost-dev.db')
},
debug: false
},
// #### Server
// Can be host & port (default), or socket
server: {
// Host to be passed to node's `net.Server#listen()`
host: '127.0.0.1',
// Port to be passed to node's `net.Server#listen()`, for iisnode set this to `process.env.PORT`
port: process.env.PORT
port: '2368'
},
// #### Paths
// Specify where your content directory lives
paths: {
contentPath: path.join(__dirname, '/content/')
},
forceAdminSSL: false
}
},

// ### Production
// When running Ghost in the wild, use the production environment
// Configure your URL and mail settings here
production: {
url: websiteUrl,
url: 'http://intelligence.centsfactory.com',
urlSSL: websiteUrlSSL,

// Visit http://support.ghost.org/mail for instructions
Expand All @@ -93,7 +107,16 @@ config = {
// Port to be passed to node's `net.Server#listen()`, for iisnode set this to `process.env.PORT`
port: process.env.PORT
},
forceAdminSSL: true
storage :{
active: 'ghost-azure-store',

'ghost-azure-store': {
key: "1xWXD9WaJS+SMC50D7GLGeAoxuVATeBFEwalzyJwm2c+b1jmPkBsiBH3s3EWDTOeZHF1eyJn/d4wGn1mSdf37A==",
storage: "impactory",
container: "main"
}
},
forceAdminSSL: false
},

// **Developers only need to edit below here**
Expand Down
Binary file added content/fonts/BebasNeue/BebasNeue.otf
Binary file not shown.
37 changes: 37 additions & 0 deletions content/fonts/BebasNeue/License.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
____________________________________________________________________________________________________
_____ _ _ __ ____ _ _ __ ______ _ _ ____ _____
/ ) / / / | / ) / /| / | / | / / ) / '
---/----/----/___ /-----/__|----/___ /----/| /-|----/__|--------/--------|---/-----/____/----/__----
/ / / / / | / | / |/ | / | / | / / /
_/____/____/____/_____/____|__/_____|___/__/___|__/____|______/__________|_/_____/_________/____ ___
/
(_ / DHARMA TYPE FREE FONTs


This Font Software is licensed under the SIL Open Font License, Version 1.1

FAQ

Q_ Can I use this for a commercial product?
A_ Yes

Q_ Can I use this on a web page via css @font-face?
A_ Yes

Q_ Can I donate $ to you?
A_ Yes, You can! ( Paypal: info@dharmatype.com )



Contact_______________________________

info@dharmatype.com

Dharma Type (http://dharmatype.com)
|
|___ Flat it type foundry
|
|___ Prop-a-ganda
|
|___ Holiday Type
______________________________________
Binary file added content/fonts/Gotham/GothamNarrow-Medium.otf
Binary file not shown.
Binary file added content/fonts/Gotham/GothamSSm-Black.otf
Binary file not shown.
Binary file added content/fonts/Gotham/GothamSSm-Book.eot
Binary file not shown.
Binary file added content/fonts/Gotham/GothamSSm-Light.eot
Binary file not shown.
Binary file added content/fonts/Gotham/gothamssm-bold.otf
Binary file not shown.
Binary file added content/fonts/Gotham/gothamssm-book.otf
Binary file not shown.
Binary file added content/fonts/Gotham/gothamssm-light.otf
Binary file not shown.
Binary file added content/fonts/Gotham/gothamssm-medium.otf
Binary file not shown.
Binary file added content/fonts/Gotham/gothamssm-narrow.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added content/fonts/Mercury/MercuryTextG1-Roman.otf
Binary file not shown.
Binary file added content/images/2016/10/header_home-1-1.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/images/2016/10/header_home-1.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/images/2016/10/header_home-2.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/images/2016/10/header_home.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/images/fonts/BebasNeue/BebasNeue.otf
Binary file not shown.
37 changes: 37 additions & 0 deletions content/images/fonts/BebasNeue/License.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
____________________________________________________________________________________________________
_____ _ _ __ ____ _ _ __ ______ _ _ ____ _____
/ ) / / / | / ) / /| / | / | / / ) / '
---/----/----/___ /-----/__|----/___ /----/| /-|----/__|--------/--------|---/-----/____/----/__----
/ / / / / | / | / |/ | / | / | / / /
_/____/____/____/_____/____|__/_____|___/__/___|__/____|______/__________|_/_____/_________/____ ___
/
(_ / DHARMA TYPE FREE FONTs


This Font Software is licensed under the SIL Open Font License, Version 1.1

FAQ

Q_ Can I use this for a commercial product?
A_ Yes

Q_ Can I use this on a web page via css @font-face?
A_ Yes

Q_ Can I donate $ to you?
A_ Yes, You can! ( Paypal: info@dharmatype.com )



Contact_______________________________

info@dharmatype.com

Dharma Type (http://dharmatype.com)
|
|___ Flat it type foundry
|
|___ Prop-a-ganda
|
|___ Holiday Type
______________________________________
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added content/images/fonts/Didot.ttc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added content/images/fonts/Gotham/GothamSSm-Black.otf
Binary file not shown.
Binary file added content/images/fonts/Gotham/GothamSSm-Bold.otf
Binary file not shown.
Binary file added content/images/fonts/Gotham/GothamSSm-Book.eot
Binary file not shown.
Binary file added content/images/fonts/Gotham/GothamSSm-Book.otf
Binary file not shown.
Binary file added content/images/fonts/Gotham/GothamSSm-Light.eot
Binary file not shown.
Binary file added content/images/fonts/Gotham/GothamSSm-Light.otf
Binary file not shown.
Binary file added content/images/fonts/Gotham/GothamSSm-Medium.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added content/images/fonts/Oswald/Oswald-Regular.ttf
Binary file not shown.
2 changes: 2 additions & 0 deletions content/storage/ghost-azure-store/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
'use strict';
module.exports = require('ghost-azure-store');
2 changes: 2 additions & 0 deletions content/storage/ghost-azurestorage/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
'use strict';
module.exports = require('ghost-azure-storage');