mirror of
https://github.com/plausible/analytics.git
synced 2024-12-25 02:24:55 +03:00
e8f20e67cc
* Load dashboard with react * Rename stast2 to dashboard * Save timeframe on the frontend * Implement current visitors * Implement comparisons * React to route changes * Add modals * Show number of visitors on hover * Show 'Today' for today * Add 30 days * Show referrer drilldown * Arrow keys to go back and forward * Improve comparisons UI * Fix dropdown when clicking on it * Verify API access in a memoized fashion * Test API access * Test stats through controller * Move map formatting from stats controller to stats * Remove unused code * Remove dead code from query * Remove dead code from stats templates * Add stats view test back in * Render modal inside the modal component * Implement google search terms * Add explanation for screen sizes * Separate dashboard JS from the app js
51 lines
1.3 KiB
Elixir
51 lines
1.3 KiB
Elixir
use Mix.Config
|
|
|
|
# For development, we disable any cache and enable
|
|
# debugging and code reloading.
|
|
#
|
|
# The watchers configuration can be used to run external
|
|
# watchers to your application. For example, we use it
|
|
# with webpack to recompile .js and .css sources.
|
|
config :plausible, PlausibleWeb.Endpoint,
|
|
http: [port: 8000],
|
|
debug_errors: true,
|
|
code_reloader: true,
|
|
check_origin: false,
|
|
watchers: [
|
|
node: [
|
|
"node_modules/webpack/bin/webpack.js",
|
|
"--mode",
|
|
"development",
|
|
"--watch-stdin",
|
|
cd: Path.expand("../assets", __DIR__)
|
|
]
|
|
]
|
|
|
|
config :plausible, PlausibleWeb.Endpoint,
|
|
live_reload: [
|
|
patterns: [
|
|
~r{priv/static/.*(js|css|png|jpeg|jpg|gif|svg)$},
|
|
~r{priv/gettext/.*(po)$},
|
|
~r{lib/plausible_web/views/.*(ex)$},
|
|
~r{lib/plausible_web/templates/.*(eex)$}
|
|
]
|
|
]
|
|
|
|
config :logger, :console, format: "[$level] $message\n"
|
|
config :phoenix, :stacktrace_depth, 20
|
|
config :phoenix, :plug_init_mode, :runtime
|
|
|
|
config :plausible, Plausible.Repo,
|
|
username: "postgres",
|
|
password: "postgres",
|
|
database: "plausible_dev",
|
|
hostname: "localhost",
|
|
pool_size: 10
|
|
|
|
config :plausible, Plausible.Mailer,
|
|
adapter: Bamboo.LocalAdapter
|
|
|
|
if File.exists?("config/dev.secret.exs") do
|
|
import_config "dev.secret.exs"
|
|
end
|