├── .gitignore ├── .profile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bin ├── common │ └── env-values.js ├── create-config ├── init-deployment └── wait-for-db ├── config.development.json ├── content ├── adapters │ └── storage │ │ └── s3 ├── data │ └── .gitkeep └── themes │ └── casper ├── package.json └── server.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobyism/ghost-on-heroku/HEAD/.gitignore -------------------------------------------------------------------------------- /.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobyism/ghost-on-heroku/HEAD/.profile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobyism/ghost-on-heroku/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: npm start --production 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobyism/ghost-on-heroku/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobyism/ghost-on-heroku/HEAD/app.json -------------------------------------------------------------------------------- /bin/common/env-values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobyism/ghost-on-heroku/HEAD/bin/common/env-values.js -------------------------------------------------------------------------------- /bin/create-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobyism/ghost-on-heroku/HEAD/bin/create-config -------------------------------------------------------------------------------- /bin/init-deployment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobyism/ghost-on-heroku/HEAD/bin/init-deployment -------------------------------------------------------------------------------- /bin/wait-for-db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobyism/ghost-on-heroku/HEAD/bin/wait-for-db -------------------------------------------------------------------------------- /config.development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobyism/ghost-on-heroku/HEAD/config.development.json -------------------------------------------------------------------------------- /content/adapters/storage/s3: -------------------------------------------------------------------------------- 1 | ../../../node_modules/ghost-storage-adapter-s3/ -------------------------------------------------------------------------------- /content/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/themes/casper: -------------------------------------------------------------------------------- 1 | ../../node_modules/casper/ -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobyism/ghost-on-heroku/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobyism/ghost-on-heroku/HEAD/server.js --------------------------------------------------------------------------------