mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 01:01:39 -05:00
Update changelog and Dockerfile
This commit is contained in:
parent
5fe503f745
commit
396a8415b8
3 changed files with 4 additions and 2 deletions
|
|
@ -10,11 +10,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
## Removed
|
||||
|
||||
- Optional telemetry was removed from the app.
|
||||
- Sidekiq Web UI is now protected by basic auth in non-self-hosted mode. (Needs to be tested)
|
||||
- Sidekiq Web UI is now protected by basic auth in non-self-hosted mode.
|
||||
|
||||
## Changed
|
||||
|
||||
- `rake points:migrate_to_lonlat` task now also tries to extract latitude and longitude from `raw_data` column before using `longitude` and `latitude` columns to fill `lonlat` column.
|
||||
- Docker entrypoints are now using `DATABASE_NAME` environment variable to check if Postgres is existing/available.
|
||||
|
||||
|
||||
# 0.25.4 - 2025-04-02
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
</div>
|
||||
<% end %>
|
||||
|
||||
<% if !SELF_HOSTED && devise_mapping.registerable? && controller_name != 'registrations' %>
|
||||
<% if !SELF_HOSTED && devise_mapping&.registerable? && controller_name != 'registrations' %>
|
||||
<div class='my-2'>
|
||||
<%= link_to "Register", new_registration_path(resource_name) %>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ ENV BUNDLE_PATH=/usr/local/bundle/gems
|
|||
ENV RAILS_LOG_TO_STDOUT=true
|
||||
ENV RAILS_PORT=3000
|
||||
ENV RAILS_ENV=development
|
||||
ENV SELF_HOSTED=true
|
||||
|
||||
# Install dependencies for application
|
||||
RUN apk -U add --no-cache \
|
||||
|
|
|
|||
Loading…
Reference in a new issue