From f656cf299f10036dcf7fcee47ab4fa43e10a3ddf Mon Sep 17 00:00:00 2001 From: sujaykundu777 Date: Sat, 20 Jun 2020 00:24:49 +0530 Subject: [PATCH] add firebase support --- .firebaserc | 5 +++++ README.md | 3 ++- firebase.json | 15 +++++++++++++++ 3 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 .firebaserc create mode 100644 firebase.json diff --git a/.firebaserc b/.firebaserc new file mode 100644 index 0000000000000..581df4f85bfb4 --- /dev/null +++ b/.firebaserc @@ -0,0 +1,5 @@ +{ + "projects": { + "default": "devlopr" + } +} diff --git a/README.md b/README.md index be8d7b8958492..6f85266fc1ef5 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ devlopr uses Markdown Files to create data like Blog Posts, Gallery, Shop Produc ### Demo (Hosted Apps) - Github Pages Demo - [here](https://sujaykundu.com) +- Firebase Demo - [here](https://devlopr.web.app) - Netlify Demo - [here](https://devlopr.netlify.com) - Zeit Now Demo - [here](https://devlopr-jekyll.now.sh) - Heroku Demo - [here](https://devlopr-jekyll.herokuapp.com) @@ -41,7 +42,7 @@ devlopr uses Markdown Files to create data like Blog Posts, Gallery, Shop Produc - Send Newsletters using [Mailchimp](https://mailchimp.com/) - Contact Forms using [Formspree](https://formspree.io/) - Coding Activity using [Wakatime](https://wakatime.com/) -- Hosting Support for [Github Pages](https://pages.github.com), [Netlify](https://netlify.com), [Zeit](https://zeit.co), [Heroku](https://heroku.com), [AWS Amplify](aws.amplify.com) +- Hosting Support for [Github Pages](https://pages.github.com), [Netlify](https://netlify.com), [Zeit](https://zeit.co), [Heroku](https://heroku.com), [AWS Amplify](aws.amplify.com), [Firebase](https://firebase.com) - CI/CD Support using [Travis CI](https://sujaykundu.com/blog/posts/deploy-jekyll-blog-using-github-pages-and-travis-ci/), Buddy , Circle CI #### Jekyll Admin diff --git a/firebase.json b/firebase.json new file mode 100644 index 0000000000000..6bb3794e16e3a --- /dev/null +++ b/firebase.json @@ -0,0 +1,15 @@ +{ + "hosting": { + "public": "build", + "ignore": [ + "firebase.json", + "**/.*", + "**/node_modules/**", + "Gemfile", + "Gemfile.lock", + "Rakefile", + "CNAME", + "README.md" + ] + } +}