1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-17 11:54:22 +01:00

rake task to generate code checksum

This commit is contained in:
Sylvain 2019-03-20 11:37:09 +01:00
parent 940ea3051b
commit fce2d824b4
2 changed files with 6 additions and 0 deletions

View File

@ -5,4 +5,5 @@
- [TODO DEPLOY] `rake fablab:setup:set_environment_to_invoices`
- [TODO DEPLOY] `rake fablab:setup:chain_invoices_items_records`
- [TODO DEPLOY] `rake fablab:setup:chain_invoices_records`
- [TODO DEPLOY] `rake fablab:setup:chain_history_values_records`
- [TODO DEPLOY] add `DISK_SPACE_MB_ALERT` environment variable (see [doc/environment.md](doc/environment.md) for configuration details)

View File

@ -45,5 +45,10 @@ namespace :fablab do
end
end
desc 'generate current code checksum'
task checksum: :environment do
require 'checksum'
puts Checksum.code
end
end
end