1.0.0-m12 • Published 2 years ago

confluence-static-site-builder v1.0.0-m12

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

confluence-static-site

Quality Gate Status Known Vulnerabilities npm version

install it

  • with npm
npm install confluence-static-site-builder -g
  • with homebrew

configure your site

confsite env

it creates a .env file with the following properties

  • CONFLUENCE_SITE_NAME : the Confluence cloud instance you want to generate a site from
  • CONFLUENCE_USERNAME : the username to use to consume Confluence APIs
  • CONFLUENCE_API_TOKEN : the user personal access token to consume Confluence APIs
  • TARGET_SITE : the domain name of where your generated site will be hosted
  • TWITTER_SITE : the twitter handle for seo purposes
  • GOOGLE_ANALYTICS_TRACKING_ID: Google Analytics tracking id
confsite config

it creates a .confluence-static-site.json file with the following configuration

{
  "title": "confluence-static-site",
  "iconUrl": "",
  "name": "space name",
  "theme": {
    "name": "confluence-static-site",
    "backgroundColor": "rgb(0, 102, 68)",
    "highlightColor": "#FFFFFF"
  }
}

extract your site content

confsite extract <spaceKey>

build your site

confsite build <spaceKey>
confsite build <spaceKey> --serve # with webpack dev server
confsite build <spaceKey> --assets my-assets-folder # copy your assets to the site output assets (i.e. site logo ...)

everything in the output directory

Once your content is extracted and the site is built, you will have an output directory created in the root of your project folder with the following structure

- output
    - site
        - <spaceKey>
            - articles
                - <blog-title-1>
                - <blog-title-2>
                - ...
            - assets
                - avatars
                - emojis
            - attachments
            - notes
                - <page-title-1>
                - <page-title-2>
                - ...
            - object-resolver
    - templates

What you need to deploy is the output/site/<spaceKey>

deploy your site

  • with GitHub pages
  • with Google Firebase