Hack NTX is a civic technology hackathon focused on spurring civic engagement, utilizing open data, improving open government policies, and bolstering smart city innovations.
This is a static site hosted on Github Pages using the Jekyll static site generator.
- Download/clone the repo and navigate to the directory.
- If you don't have Jekyll installed, install it:
gem install jekyll
- Navigate to the repo directory and install dependencies:
bundle install
npm install -D
- Run Jekyll:
jekyll serve
orjekyll s
- If this doesn't work, you can try
bundle exec jekyll serve
- If this doesn't work, you can try
Sometimes when running into gem version conflicts, these can be remedied by cleaning up the gems and re-installing them.
bundle clean --force
bundle install
When developing, use the built in npm scripts to start the Jekyll server, compile/minify scripts and styles, and start a Browsersync session at the same time.
npm run start
This should launch a new localhost tab running at localhost:3000
.