mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
Enable serving static files from the public directory in development mode.
This commit is contained in:
parent
cf5ebae5ae
commit
04551d6fbd
3 changed files with 9 additions and 1 deletions
|
|
@ -1 +1 @@
|
|||
0.15.12
|
||||
0.15.13
|
||||
|
|
|
|||
|
|
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
# 0.15.13 - 2024-11-01
|
||||
|
||||
### Changed
|
||||
|
||||
- Enable serving static files from the `public` directory in development mode.
|
||||
|
||||
# 0.15.12 - 2024-11-01
|
||||
|
||||
### Added
|
||||
|
|
|
|||
|
|
@ -35,6 +35,8 @@ Rails.application.configure do
|
|||
config.cache_store = :redis_cache_store, { url: ENV['REDIS_URL'] }
|
||||
end
|
||||
|
||||
config.public_file_server.enabled = true
|
||||
|
||||
# Store uploaded files on the local file system (see config/storage.yml for options).
|
||||
config.active_storage.service = :local
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue