1 KiB
1 KiB
Tab
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.