-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathdev.example.exs
More file actions
47 lines (44 loc) · 1.26 KB
/
dev.example.exs
File metadata and controls
47 lines (44 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import Config
config :bun,
version: "1.1.18",
default: [
args: ~w(build app.js --outdir=../../priv/static),
cd: Path.expand("../assets/js", __DIR__),
env: %{}
]
# MySQL/MariaDB adapter
#
# To use MySQL/MariaDB on your local development machine uncomment these lines and
# comment the lines of other adapters.
#
# config :error_tracker, :ecto_adapter, :mysql
#
# config :error_tracker, ErrorTrackerDev.Repo,
# url: "ecto://root:root@127.0.0.1/error_tracker_dev"
#
# SQLite3 adapter
#
# To use SQLite3 on your local development machine uncomment these lines and
# comment the lines of other adapters.
#
# config :error_tracker, :ecto_adapter, :sqlite3
#
# config :error_tracker, ErrorTrackerDev.Repo,
# database: System.get_env("SQLITE_DB") || "dev.db"
#
# PostgreSQL adapter
#
# To use PostgreSQL on your local development machine uncomment these lines and
# comment the lines of other adapters.
config :error_tracker, ErrorTrackerDev.Repo, url: "ecto://postgres:postgres@127.0.0.1/error_tracker_dev"
config :error_tracker, :ecto_adapter, :postgres
config :tailwind,
version: "3.4.3",
default: [
args: ~w(
--config=tailwind.config.js
--input=css/app.css
--output=../priv/static/app.css
),
cd: Path.expand("../assets", __DIR__)
]