Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jungerm2/cvrt
Website for UW-Madison's Computer Vision Roundtable
https://github.com/jungerm2/cvrt
Last synced: 16 days ago
JSON representation
Website for UW-Madison's Computer Vision Roundtable
- Host: GitHub
- URL: https://github.com/jungerm2/cvrt
- Owner: jungerm2
- Created: 2022-09-06T14:47:57.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-06T16:56:13.000Z (12 months ago)
- Last Synced: 2024-11-11T23:32:01.385Z (3 months ago)
- Homepage: https://cvrt.cs.wisc.edu/
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Development Guide
This website is made with Jekyll, a [Ruby Gem](https://jekyllrb.com/docs/ruby-101/#gems) that can be installed on most systems. To locally test the website you'll need:
1. A full [Ruby development environment](https://www.ruby-lang.org/en/documentation/installation/#apt) (usually `apt install ruby-full`).
2. Install dependencies:
```
gem install jekyll bundler
```
3. Clone this repo and cd to it.
```
git clone [email protected]:jungerm2/cvrt.git && cd cvrt/docs
```
4. Install missing gems
```
bundle install
```
5. Build the site and make it available on a local server
```
bundle exec jekyll serve
```
6. Now browse to [http://localhost:4000/cvrt/](http://localhost:4000/cvrt/)Once code is pushed to the repo, a GitHub action will run, generate the website's source and re-publish it online.