mirror of
https://github.com/privacyguides/privacyguides.org
synced 2024-11-10 13:13:35 +01:00
_data | ||
_includes | ||
_layouts | ||
_sass | ||
.github | ||
.well-known | ||
assets | ||
collections | ||
legacy_pages | ||
_config.yml | ||
.gitattributes | ||
.gitignore | ||
.npmrc | ||
.ruby-version | ||
404.html | ||
blog.html | ||
Gemfile | ||
Gemfile.lock | ||
index.html | ||
LICENSE.txt | ||
notices.md | ||
package-lock.json | ||
package.json | ||
privacy-policy.md | ||
README.md |
Developing
- Install the version of Ruby currently specified by
.ruby-version
- Install node.js and npm
- Install Bundler v2.2.5:
gem install bundler:2.2.5
- Install the required dependencies:
bundle install
npm install
- Build the website (the output can be found in the
_site
directory):npm run build
- Serve the website locally with live reloading:
npm run serve