diff options
-rw-r--r-- | README.md | 7 | ||||
-rw-r--r-- | public/views/hackmd/head.ejs | 2 | ||||
-rw-r--r-- | public/views/index/head.ejs | 2 | ||||
-rw-r--r-- | public/views/pretty.ejs | 2 | ||||
-rw-r--r-- | public/views/slide.ejs | 3 |
5 files changed, 11 insertions, 5 deletions
@@ -26,6 +26,7 @@ Thanks for using! :smile: - [Prerequisite](#prerequisite) - [Instructions](#instructions) - [Heroku Deployment](#heroku-deployment) + - [Kubernetes](#kubernetes) - [HackMD by docker container](#hackmd-by-docker-container) - [Upgrade](#upgrade) - [Native setup](#native-setup) @@ -78,6 +79,12 @@ You can quickly setup a sample Heroku HackMD application by clicking the button If you deploy it without the button, keep in mind to use the right buildpacks. For details check `app.json`. +## Kubernetes + +To install use `helm install stable/hackmd`. + +For all further details, please check out the offical HackMD [K8s helm chart](https://github.com/kubernetes/charts/tree/master/stable/hackmd). + ## HackMD by docker container [![Try in PWD](https://cdn.rawgit.com/play-with-docker/stacks/cff22438/assets/images/button.png)](http://play-with-docker.com?stack=https://github.com/hackmdio/docker-hackmd/raw/master/docker-compose.yml&stack_name=hackmd) diff --git a/public/views/hackmd/head.ejs b/public/views/hackmd/head.ejs index 1f72285b..8dfef432 100644 --- a/public/views/hackmd/head.ejs +++ b/public/views/hackmd/head.ejs @@ -15,8 +15,8 @@ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/octicons/3.5.0/octicons.min.css" integrity="sha256-QiWfLIsCT02Sdwkogf6YMiQlj4NE84MKkzEMkZnMGdg=" crossorigin="anonymous" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/emojify.js/1.1.0/css/basic/emojify.min.css" integrity="sha256-UOrvMOsSDSrW6szVLe8ZDZezBxh5IoIfgTwdNDgTjiU=" crossorigin="anonymous" /> <%- include ../build/index-header %> +<%- include ../shared/polyfill %> <% } else { %> <link rel="stylesheet" href='<%- url %>/build/emojify.js/dist/css/basic/emojify.min.css'> <%- include ../build/index-pack-header %> <% } %> -<%- include ../shared/polyfill %>
\ No newline at end of file diff --git a/public/views/index/head.ejs b/public/views/index/head.ejs index bbd14567..e43c57d4 100644 --- a/public/views/index/head.ejs +++ b/public/views/index/head.ejs @@ -16,7 +16,7 @@ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/select2/3.5.4/select2.min.css" integrity="sha256-ijlUKKj3hJCiiT2HWo1kqkI79NTEYpzOsw5Rs3k42dI=" crossorigin="anonymous" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/select2/3.5.4/select2-bootstrap.min.css" integrity="sha256-NAWFcNIZdH+TS1xpWujF/EB/Y8gwBbEOCoaK/eqaer8=" crossorigin="anonymous" /> <%- include ../build/cover-header %> +<%- include ../shared/polyfill %> <% } else { %> <%- include ../build/cover-pack-header %> <% } %> -<%- include ../shared/polyfill %>
\ No newline at end of file diff --git a/public/views/pretty.ejs b/public/views/pretty.ejs index 91d9c36c..395f921b 100644 --- a/public/views/pretty.ejs +++ b/public/views/pretty.ejs @@ -24,11 +24,11 @@ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/octicons/3.5.0/octicons.min.css" integrity="sha256-QiWfLIsCT02Sdwkogf6YMiQlj4NE84MKkzEMkZnMGdg=" crossorigin="anonymous" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/emojify.js/1.1.0/css/basic/emojify.min.css" integrity="sha256-UOrvMOsSDSrW6szVLe8ZDZezBxh5IoIfgTwdNDgTjiU=" crossorigin="anonymous" /> <%- include build/pretty-header %> + <%- include shared/polyfill %> <% } else { %> <link rel="stylesheet" href='<%- url %>/build/emojify.js/dist/css/basic/emojify.min.css'> <%- include build/pretty-pack-header %> <% } %> - <%- include shared/polyfill %> </head> <body style="display:none;"> diff --git a/public/views/slide.ejs b/public/views/slide.ejs index a9d2b708..7b9ae29d 100644 --- a/public/views/slide.ejs +++ b/public/views/slide.ejs @@ -22,6 +22,7 @@ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.6.0/css/reveal.min.css" integrity="sha256-ol2N5Xr80jdDqxK0lte3orKGb9Ja3sOnpAUV7TTADmg=" crossorigin="anonymous" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/emojify.js/1.1.0/css/basic/emojify.min.css" integrity="sha256-UOrvMOsSDSrW6szVLe8ZDZezBxh5IoIfgTwdNDgTjiU=" crossorigin="anonymous" /> <%- include build/slide-header %> + <%- include shared/polyfill %> <% } else { %> <link rel="stylesheet" href="<%- url %>/build/reveal.js/css/reveal.css"> <link rel="stylesheet" href='<%- url %>/build/emojify.js/dist/css/basic/emojify.min.css'> @@ -47,8 +48,6 @@ link.href = '<%- url %>/build/reveal.js/' + (window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css'); document.getElementsByTagName( 'head' )[0].appendChild( link ); </script> - - <%- include shared/polyfill %> </head> <body> <div class="container"> |