Web software for managing a database of members in a collaborative grassroots workshop, and also controlling Arclight of 23b Hackerspace's Arduino access control system via Ethernet ( https://github.com/zyphlar/Open_Access_Control_Ethernet )
Go to file
2013-12-29 22:28:54 -07:00
app Adjusting icon and adding meta tag for icon 2013-12-29 22:28:54 -07:00
config Adding direct door access commands and interface 2013-12-02 02:03:40 -07:00
db Updated stats and privacy 2013-09-28 18:55:22 -07:00
doc Got uploading working 2012-08-24 21:14:51 -07:00
lib Got uploading working 2012-08-24 21:14:51 -07:00
log Fixed merge conflict with mailer url, need to remove this from git as well 2012-09-15 21:44:06 -07:00
public Adjusting icon and adding meta tag for icon 2013-12-29 22:28:54 -07:00
script Got uploading working 2012-08-24 21:14:51 -07:00
test Adding csv import 2013-08-28 04:25:54 -07:00
vendor Got uploading working 2012-08-24 21:14:51 -07:00
.gitignore Adding wysiwyg and settings 2013-09-28 04:59:19 -07:00
.rvmrc Switching to RVM, View tweaks 2013-08-28 05:15:50 -07:00
config.ru Got uploading working 2012-08-24 21:14:51 -07:00
Gemfile Adding mac history graph 2013-10-26 03:22:03 -07:00
Gemfile.lock Adding mac history graph 2013-10-26 03:22:03 -07:00
Rakefile Got uploading working 2012-08-24 21:14:51 -07:00
README.rdoc Update README.rdoc 2013-10-26 03:21:48 -07:00
recompile_assets.sh Adjusting wording, styling, and graph visibility 2013-10-02 04:45:07 -07:00

== Open Access Control Web Interface
Web software for managing a database of members in a collaborative grassroots workshop, 
and also controlling Arclight of 23b Hackerspace's Arduino access control system 
via Ethernet ( see: https://github.com/zyphlar/Open_Access_Control_Ethernet )

https://github.com/zyphlar/Open-Source-Access-Control-Web-Interface

Copyright Will Bradley, 2012-2013
Distributed under a Creative Commons Attribution 3.0 license http://creativecommons.org/licenses/by/3.0/

To use:
* Load into a Rails 3 environment
* Copy config/config.yml.example to config/config.yml and edit appropriately
* Copy config/database.yml.example to config/database.yml and edit appropriately
* Copy config/initializers/secret_token.rb.example to config/config/initializers/secret_token.rb and edit appropriately
* Run bundle install, rake db:migrate, etc.
* Use the Rails console to create a new User with admin rights
  * user = User.new
  * user.password = "foobar"
  * user.admin = true
  * user.save