A platform for deploying blogs using
.md
files on GitHub.
And much more features coming :grin:
GITHUB_API_TOKEN
- Create a personal access token (no scope needed);GITHUB_OAUTH_CLIENT_ID
and GITHUB_OAUTH_CLIENT_SECRET
- Create an OAuth application with homepage url http://127.0.0.1:4000
and callback http://127.0.0.1:4000/auth/github/callback
.docker-compose build
;docker-compose run --rm web mix deps.get
;docker-compose run --rm web mix ecto.create
;docker-compose run --rm web mix ecto.migrate
;docker-compose run --rm web npm install --prefix apps/web/assets
;docker-compose up
;docker-compose run --rm web mix ci
;git checkout -b my-feature
;git commit -m 'My new feature'
;git push origin my-feature
.After the merge of your pull request is done, you can delete your branch.