https://github.com/codefreezefi/codefreeze.fi
Source code (and participant registration) for CodeFreeze - Europe's northernmost conference for people interested in software.
https://github.com/codefreezefi/codefreeze.fi
codefreeze finland openspace unconference
Last synced: 3 months ago
JSON representation
Source code (and participant registration) for CodeFreeze - Europe's northernmost conference for people interested in software.
- Host: GitHub
- URL: https://github.com/codefreezefi/codefreeze.fi
- Owner: codefreezefi
- Created: 2014-08-24T12:26:26.000Z (almost 12 years ago)
- Default Branch: gh-pages
- Last Pushed: 2025-12-12T09:55:15.000Z (6 months ago)
- Last Synced: 2025-12-21T14:29:38.852Z (5 months ago)
- Topics: codefreeze, finland, openspace, unconference
- Language: HTML
- Homepage: https://codefreeze.fi
- Size: 86.8 MB
- Stars: 8
- Watchers: 6
- Forks: 137
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
codefreeze.fi
=============
Welcome to CodeFreeze - a different kind of conference.
## Updating the site
I highly encourage to test the site with Jekyll on your computer, if doing any (major) changes. GitHub has good instructions for [using Jekyll with GitHub Pages](https://help.github.com/en/articles/using-jekyll-as-a-static-site-generator-with-github-pages).
If you already have [Docker](https://www.docker.com/) on your computer, you may use this shell script for running Jekyll in Docker:
./serve.sh
Alternatively, you may install Jekyll directly on your computer:
Install Bundler:
gem install bundler
Install the gems from the Gemfile:
bundle install
Run the site locally using Jekyll:
bundle exec jekyll serve
Occasionally it may be necessary to update the dependencies to match latest version of GitHub Pages. This command will update the `Gemfile.lock` file which should be committed to version control:
bundle update
### Using the DevContainer
You can launch a DevContainer for example in VSCode. After launch, you can start the server using
bundle exec jekyll serve
## Building the JavaScript for the gallery
```bash
npm ci
npx vite build
```