Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/code4lib/job_board
https://github.com/code4lib/job_board
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/code4lib/job_board
- Owner: code4lib
- Created: 2017-02-25T22:24:49.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-12-11T22:32:39.000Z (about 1 year ago)
- Last Synced: 2024-04-16T07:15:34.187Z (8 months ago)
- Language: HTML
- Homepage: https://jobs.code4lib.org
- Size: 1.22 MB
- Stars: 13
- Watchers: 6
- Forks: 5
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Job Board
A Ruby on Rails job post aggregator for the code4lib community.
[![Build Status](https://travis-ci.org/cbeer/job_board.svg?branch=master)](http://travis-ci.org/cbeer/job_board)
[![Code Climate](https://codeclimate.com/github/cbeer/job_board/badges/gpa.svg)](https://codeclimate.com/github/cbeer/job_board)
[![Coverage Status](https://coveralls.io/repos/cbeer/job_board/badge.svg)](https://coveralls.io/r/cbeer/job_board)
## InstallingTo install the Job Board, you need the following:
- Ruby 2.3 or greater
- A database engine, e.g. MySQL, Postgresql, or SQLite3
- A compatible JavaScript installation for asset compilation (see https://github.com/sstephenson/execjs#readme)```console
$ bin/setup
$ rake db:migrate
$ rails server
```The application should be available at http://127.0.0.1:3000.
### Loading seeds
Fetch the `dump.tar.gz` file from https://archive.org/details/jobs.code4lib.org and extract it into `./tmp/dump`.
```
$ rake db:seed
```## Tests
To run the tests:
```console
$ rake
# or
$ rspec
```