tab/README.md
2018-07-26 21:01:48 +02:00

1 KiB

Tab Analytics Code Climate Coverage Status Build Status

Deploy

Just run cap production deploy. You might need to edit some config files on the server.

Adding clients

A client can see and modify balances of other users.

To add a client, connect to the server, cd production/current, then run RAILS_ENV=production bundle exec rails console. Then you can add clients with client = Client.create name: "Tap".

If you want the client to be able to make transactions, run: client.add_role :create_transactions in the console.