https://github.com/ianmurrays/active_invoices
Very simple invoicing application built with Ruby on Rails and ActiveAdmin
https://github.com/ianmurrays/active_invoices
Last synced: 11 days ago
JSON representation
Very simple invoicing application built with Ruby on Rails and ActiveAdmin
- Host: GitHub
- URL: https://github.com/ianmurrays/active_invoices
- Owner: ianmurrays
- License: mit
- Created: 2011-08-19T02:26:46.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-12-20T12:45:28.000Z (over 12 years ago)
- Last Synced: 2025-04-02T09:44:57.053Z (about 2 months ago)
- Language: Ruby
- Homepage:
- Size: 291 KB
- Stars: 157
- Watchers: 10
- Forks: 33
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Active Invoices is a very simple Ruby on Rails invoicing application, built using the amazing [active_admin][1] gem.
## Installation & Usage
Clone the repository:
git clone https://github.com/ianmurrays/active_invoices
And run the following commands:bundle install
rake db:schema:load # or you can run rake db:migrateYou're going to need to create a user on the database using `irb`:
rails console
>> AdminUser.create! :email => "[email protected]", :password => "admin", :password_confirmation => "admin", :admin => true
You'll need to generate the assets for Active_admin:rails g active_admin:assets
Now, run `rails server` and point your server to [http://localhost:3000](http://localhost:3000) and try out your new installation.
[1]: https://github.com/gregbell/active_admin