Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adamgoose/ghost-blog
https://github.com/adamgoose/ghost-blog
Last synced: about 23 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/adamgoose/ghost-blog
- Owner: adamgoose
- License: mit
- Created: 2014-08-14T16:06:20.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-08-14T16:41:42.000Z (over 10 years ago)
- Last Synced: 2023-08-03T00:56:03.130Z (over 1 year ago)
- Language: JavaScript
- Size: 3.93 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Install on Laravel Forge
1. Disable nginx with `sudo update-rc.d -f nginx disable`
2. Create a new site for your blog, and install this Git Repository
3. Execute `npm install --production` in `/home/forge/{YOUR_GHOST_BLOG_SITE_NAME}`.
4. Reboot your server
5. Add a daenom for the root user that executes `npm start /home/forge/{YOUR_GHOST_BLOG_SITE_NAME} --production`
6. Update your deploy script to look like this:cd /home/forge/{YOUR_GHOST_BLOG_SITE_NAME}
git pull origin master
npm install --production
forge daemon:restart {YOUR_DAEMON_ID}7. Ta da!