https://github.com/pyconuk/2022.pyconuk.org
PyCon UK 2022 website
https://github.com/pyconuk/2022.pyconuk.org
Last synced: 5 days ago
JSON representation
PyCon UK 2022 website
- Host: GitHub
- URL: https://github.com/pyconuk/2022.pyconuk.org
- Owner: PyconUK
- Created: 2022-03-24T08:39:16.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-01T11:32:48.000Z (about 3 years ago)
- Last Synced: 2025-03-31T08:22:42.885Z (12 months ago)
- Language: HTML
- Homepage: https://2022.pyconuk.org/
- Size: 2.4 MB
- Stars: 0
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 2022.pyconuk.org
PyCon UK 2022 website
## Building Locally
### Installing Jekyll
This site is made using [Jekyll](https://jekyllrb.com).
Jekyll is a static site generator written in ruby.
To build the project we first need to check that we have Jekyll's requirements installed.
These are:
* [Ruby](https://www.ruby-lang.org/en/downloads/) (version 2.4.0 or newer)
* [RubyGems](https://rubygems.org/pages/download)
* [GCC](https://gcc.gnu.org/install/)
* [Make](https://www.gnu.org/software/make/)
You can check if you have these installed by typing ` -v` in your terminal.
If the program is available on your system then you should see the version of the program that is installed outputted in your terminal.
For example if Ruby in installed and you run `ruby -v`, you should get output like this `ruby 2.7.0p0 (2019-12-25 revision 647ee6f091) [x86_64-linux]`.
If RugbyGems is not installed an you run `gem -v` you should get an error like this `bash: gem: command not found`
See the [Jekyll documentation](https://jekyllrb.com/docs/installation/) for more information on install Jekyll and its requirements.
Now that you have all of Jekyll's requirements installed you can install and run Jekyll:
```bash
./run
```
This will start a webserver on [http://127.0.0.1:4000/](http://127.0.0.1:4000/).
To view the website open [http://127.0.0.1:4000/](http://127.0.0.1:4000/) in your favorite web browser.
This will also automatically rebuild the project when a change to the source is detected.