Compare commits
5 Commits
feature/be
...
main
Author | SHA1 | Date | |
---|---|---|---|
dec8a0660e | |||
283e25178b | |||
4cde4c8f67 | |||
d497eaa522 | |||
eb47a26de7 |
@ -5,7 +5,7 @@
|
||||
/* This file is for your main application CSS */
|
||||
|
||||
body {
|
||||
@apply bg-base-300 text-[14pt] leading-8 overflow-x-hidden;
|
||||
@apply bg-base-300 font-['Inter'] text-[18px] leading-6 overflow-x-hidden;
|
||||
}
|
||||
|
||||
.post {
|
||||
@ -36,11 +36,14 @@ body {
|
||||
.post .code pre:before { @apply mr-0; }
|
||||
.post .code h5 { @apply hidden; }
|
||||
.post a[href] { @apply link; }
|
||||
.post .bbc-block a[href] { @apply link; }
|
||||
.post .editedby { @apply text-sm italic opacity-70 mt-4; }
|
||||
.post .title :where(img[src*="gangtags"]) + * {
|
||||
@apply mb-1;
|
||||
}
|
||||
|
||||
.post i, .post .bbc-spoiler, .post a[href] { @apply inline-block mx-1; }
|
||||
|
||||
.pagination a svg {
|
||||
@apply h-5;
|
||||
}
|
||||
|
@ -34,7 +34,8 @@ if config_env() == :prod do
|
||||
# ssl: true,
|
||||
url: database_url,
|
||||
pool_size: String.to_integer(System.get_env("POOL_SIZE") || "10"),
|
||||
socket_options: maybe_ipv6
|
||||
socket_options: maybe_ipv6,
|
||||
prepare: :unnamed
|
||||
|
||||
# The secret key base is used to sign/encrypt cookies and other secrets.
|
||||
# A default value is used in config/dev.exs and config/test.exs but you
|
||||
@ -48,7 +49,11 @@ if config_env() == :prod do
|
||||
You can generate one by calling: mix phx.gen.secret
|
||||
"""
|
||||
|
||||
host = System.get_env("PHX_HOST") || "example.com"
|
||||
host =
|
||||
System.get_env("PHX_HOST") ||
|
||||
"example.com"
|
||||
|> IO.inspect()
|
||||
|
||||
port = String.to_integer(System.get_env("PORT") || "4000")
|
||||
|
||||
config :something_erlang, :dns_cluster_query, System.get_env("DNS_CLUSTER_QUERY")
|
||||
@ -63,6 +68,7 @@ if config_env() == :prod do
|
||||
ip: {0, 0, 0, 0, 0, 0, 0, 0},
|
||||
port: port
|
||||
],
|
||||
check_origin: [host],
|
||||
secret_key_base: secret_key_base
|
||||
|
||||
# ## SSL Support
|
||||
|
@ -35,7 +35,11 @@ defmodule SomethingErlang.AwfulApi.Thread do
|
||||
end
|
||||
|
||||
posts =
|
||||
for post <- Meeseeks.all(thread, css("table.post:not(.ignored)")) do
|
||||
for post <- Meeseeks.all(thread, css("table.post")),
|
||||
post
|
||||
|> Meeseeks.attr("class")
|
||||
|> String.contains?("ignored")
|
||||
|> Kernel.not() do
|
||||
%{
|
||||
userinfo: userinfo(post),
|
||||
postdate: postdate(post),
|
||||
|
@ -37,6 +37,6 @@ defmodule SomethingErlangWeb.BookmarksLive do
|
||||
{:ok,
|
||||
socket
|
||||
|> assign(:page_title, "Bookmarks")
|
||||
|> assign(:bookmarks, Grover.get_bookmarks!(1) |> dbg())}
|
||||
|> assign(:bookmarks, Grover.get_bookmarks!(1))}
|
||||
end
|
||||
end
|
||||
|
2
mix.lock
2
mix.lock
@ -14,7 +14,7 @@
|
||||
"finch": {:hex, :finch, "0.18.0", "944ac7d34d0bd2ac8998f79f7a811b21d87d911e77a786bc5810adb75632ada4", [:mix], [{:castore, "~> 0.1 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: false]}, {:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:mint, "~> 1.3", [hex: :mint, repo: "hexpm", optional: false]}, {:nimble_options, "~> 0.4 or ~> 1.0", [hex: :nimble_options, repo: "hexpm", optional: false]}, {:nimble_pool, "~> 0.2.6 or ~> 1.0", [hex: :nimble_pool, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "69f5045b042e531e53edc2574f15e25e735b522c37e2ddb766e15b979e03aa65"},
|
||||
"floki": {:hex, :floki, "0.36.2", "a7da0193538c93f937714a6704369711998a51a6164a222d710ebd54020aa7a3", [:mix], [], "hexpm", "a8766c0bc92f074e5cb36c4f9961982eda84c5d2b8e979ca67f5c268ec8ed580"},
|
||||
"gettext": {:hex, :gettext, "0.24.0", "6f4d90ac5f3111673cbefc4ebee96fe5f37a114861ab8c7b7d5b30a1108ce6d8", [:mix], [{:expo, "~> 0.5.1", [hex: :expo, repo: "hexpm", optional: false]}], "hexpm", "bdf75cdfcbe9e4622dd18e034b227d77dd17f0f133853a1c73b97b3d6c770e8b"},
|
||||
"heroicons": {:git, "https://github.com/tailwindlabs/heroicons.git", "88ab3a0d790e6a47404cba02800a6b25d2afae50", [tag: "v2.1.1", sparse: "optimized"]},
|
||||
"heroicons": {:git, "https://github.com/tailwindlabs/heroicons.git", "88ab3a0d790e6a47404cba02800a6b25d2afae50", [tag: "v2.1.1", sparse: "optimized", depth: 1]},
|
||||
"hpax": {:hex, :hpax, "0.1.2", "09a75600d9d8bbd064cdd741f21fc06fc1f4cf3d0fcc335e5aa19be1a7235c84", [:mix], [], "hexpm", "2c87843d5a23f5f16748ebe77969880e29809580efdaccd615cd3bed628a8c13"},
|
||||
"jason": {:hex, :jason, "1.4.1", "af1504e35f629ddcdd6addb3513c3853991f694921b1b9368b0bd32beb9f1b63", [:mix], [{:decimal, "~> 1.0 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm", "fbb01ecdfd565b56261302f7e1fcc27c4fb8f32d56eab74db621fc154604a7a1"},
|
||||
"meeseeks": {:hex, :meeseeks, "0.17.0", "8a41ceccd2365476c2b779292e7649fb25f0a9735030905941f1244d2095c8a6", [:mix], [{:meeseeks_html5ever, "~> 0.14.3", [hex: :meeseeks_html5ever, repo: "hexpm", optional: false]}], "hexpm", "13efaf321a1517dea046cb48ff9baa9dc0604d9afd82c57501bc01dc45a5e309"},
|
||||
|
Reference in New Issue
Block a user