1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-19 13:54:25 +01:00

Maintenance task to display the current version

This commit is contained in:
Sylvain 2020-04-14 10:13:45 +02:00
parent 480d763e96
commit b3c823c0d4
3 changed files with 8 additions and 1 deletions

View File

@ -8,6 +8,7 @@
- Changed In-Context pseudo-language to Zulu instead of Acholi
- Allow removing contacts from the about page
- Maintenance task to migrate notifications for Fab-manager v1
- Maintenance task to display the current version
- Fix a bug: installation without nginx does not remove the service from the docker-compose file
- Fix a bug: default twitter feed is invalid
- Fix a bug: default nginx configuration does not allows secure cookies

View File

@ -37,7 +37,7 @@ The following guides should help those who want to contribute to the code.
#### Externals
- [ElasticSearch mapping](elasticsearch.md)
- [Changing the database system](postgresql_readme.md)
- [Changing the database system](postgresql_readme.md#using-another-dbms)
#### Diagrams
- [Database diagram](database.svg)

View File

@ -76,5 +76,11 @@ namespace :fablab do
n.save!
end
end
desc 'get the version'
task version: :environment do
require 'version'
puts Version.current
end
end
end