Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/djpowers/job_search_exercise
A coding exercise to create a job search site populated via API
https://github.com/djpowers/job_search_exercise
Last synced: about 1 month ago
JSON representation
A coding exercise to create a job search site populated via API
- Host: GitHub
- URL: https://github.com/djpowers/job_search_exercise
- Owner: djpowers
- Created: 2014-11-13T03:30:09.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-17T20:32:55.000Z (about 10 years ago)
- Last Synced: 2024-10-16T07:50:01.044Z (3 months ago)
- Language: Ruby
- Homepage:
- Size: 250 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Job Search Exercise
Project done as coding exercise. Allows searching, viewing, posting job listings, accessed via API. Clicked links will log an event with information about what job was viewed.
Posting a job requires a user with an admin role.
## Usage
The application expects a local server to be running on port 4000. For ease of set up, I suggest using [JSON Server](https://github.com/typicode/json-server), and pointing it to the JSON file like so:
`json-server [path_to_JSON_file] -p 4000`
The JSON file is included [here](db/data/data.json).
To populate the database with both an admin and standard user, run `rake db:seed`.