Skip to content

Very simple invoicing application built with Ruby on Rails and ActiveAdmin

License

Notifications You must be signed in to change notification settings

vishco/active_invoices

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Active Invoices is a very simple Ruby on Rails invoicing application, built using the amazing active_admin 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:migrate

You'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 and try out your new installation.

About

Very simple invoicing application built with Ruby on Rails and ActiveAdmin

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 98.0%
  • CSS 1.7%
  • Other 0.3%