Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/supertuxkart/stk-website
SuperTuxKart Main Website
https://github.com/supertuxkart/stk-website
github-pages jekyll website wiki
Last synced: 6 days ago
JSON representation
SuperTuxKart Main Website
- Host: GitHub
- URL: https://github.com/supertuxkart/stk-website
- Owner: supertuxkart
- License: mit
- Created: 2021-10-16T06:08:50.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-08-19T10:40:05.000Z (4 months ago)
- Last Synced: 2024-08-19T12:26:17.056Z (4 months ago)
- Topics: github-pages, jekyll, website, wiki
- Language: Ruby
- Homepage: https://supertuxkart.net
- Size: 67.6 MB
- Stars: 19
- Watchers: 15
- Forks: 167
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# SuperTuxKart Main Website
This is the source code of the SuperTuxKart main website, it is based on [Git-wiki](https://github.com/Drassil/git-wiki-theme) with translation support.
## How to install locally (development)
### With [docker-compose](https://docs.docker.com/compose/install/)
1. install [docker-compose](https://docs.docker.com/compose/install/)
2. run `docker-compose up stk-website`
3. the website will be ready on `http://127.0.0.1:4000/`### Without docker compose
First of all install the [ruby development environment](https://jekyllrb.com/docs/installation/) using [this guide](https://jekyllrb.com/docs/installation/).
After that install `bundler` using gem and run `bundler install`:
```
$ gem install bundler
$ bundle install
```Well, now you can run locally the app using:
```
bundle exec jekyll serve
```If everything succeds, you can visit your website at `http://127.0.0.1:4000/`.