Want a better way to keep track of invoices instead of a list of word docs? I gotcha! This app will keep track of invoices you want to send to various clients.
This is a simple application that needs Postgres to run.
You can run the various commands to create/migrate the tables to the database.
rails db:create
rails db:migrateFrom there, you can run the app via a web server:
rails sIf you need to run any console commands or debug anything, you can also run this command to log into the console:
rails cI'll be using Rails built-in test suite to run the tests. You can run the test via the rails command:
rails test