The platform for bloggers who never wanted a blogging platform in the first place.
Blogless is for writing, not for reading. Readers interact with your website, which serves content you wrote on Blogless. This enables you to completely control the user experience, without building your own infrastructure, patching a CMS, or messing about with deploying static content for every new post.
Firstly, it's for me: I want to use a CDN to serve my blog, but I don't want to write code whenever I write a new post.
- designers who are savvy with HTML/CSS
- devs with better things to do that build the features Blogless offers
- anyone willing to go through some basic technical setup to avoid giving all your traffic to a blogging platform
- create a free account
- write first post
- use Github to fork a Blogless template
- copy settings to the config file of their forked template
- enable Github pages, and navigate to
<username>.github.io/<repo>to view their first post - edit HTML/CSS of template to their taste
- build your own template. From scratch, or using a boiler plate (a node package to create this would be cool)
- Literally anything you like, it's an API after all
Unfortunately it's still too incomplete to launch. Tweet me encouragement to make it happen faster @jdbdnz or feel free to contribute
- Ensure
ruby,bundler,npm, andyarnare installed - Install dependencies
bundle install&&cd client&&yarn install - Generate a secret key by deleting
config/credentials.yml.encthen runningEDITOR=vim rails credentials:edit(this will generate a new encryptedcredentials.yml.encas well as an unversionedmaster.keyused to decrypt it). - In separate terminals
rails s -p 3001yarn start
- test Rails with
rake - test React with
yarn run test