https://github.com/buren/skanken
https://github.com/buren/skanken
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/buren/skanken
- Owner: buren
- License: mit
- Created: 2015-05-02T18:33:43.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2021-12-03T08:08:28.000Z (over 3 years ago)
- Last Synced: 2025-01-20T04:19:05.166Z (4 months ago)
- Language: Ruby
- Size: 35.8 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Skanken
## Overview
Skanken is a worker list webapplication. It is basicly a table containing the information about the workers. Made to simplify the contact between a nations foreman and the nations workers. Skanken is open source and licensed under the MIT license.## Contribute
Looking for a feature to implement?
* On the issues page, you can find features and other things that needs to be implemented.
* In [postgresql](POSTGRESQL.md) you can see how to set up the database
* In [contributing](CONTRIBUTING.md) for a guide of how to submit your contributions.## Devloping
```
git clone [email protected]:pbl/skanken.git
cd skanken
bundle install
bundle exec rake db:create db:migrate
```Start the with rails available locally on http://localhost:3000.
## To test the code in production
To run the code in production in rails you need to set ENV["SECRET_KEY_BASE"]
* Open the terminal
* cd to the skanken folder
* Run ```$ rake secret ```
* Copy the output
* Open ```~/.bashrc in a text editor```
* Append the line ```export SECRET_KEY_BASE="Paste the output from rake secret here"```Migrate the database:
```rake db:create db:migrate RAILS_ENV="production"``````
rails server
```## Tech
* Ruby >= 2.0
* Ruby on Rails 4.2
* Twitter Bootstrap 3
* jQuery 1.10