Compare commits
No commits in common. "0a9493638988fad410f9edda12753f614c2844f3" and "39630c926ec8fddf2042ae71b6226642703e3328" have entirely different histories.
0a94936389
...
39630c926e
13
.env
13
.env
@ -1,13 +0,0 @@
|
|||||||
APP_ENV=dev
|
|
||||||
APP_SECRET=1b2b121bb212b12
|
|
||||||
SERVER_NAME=:80
|
|
||||||
#forum.lisoveliy.su
|
|
||||||
HTTP_PORT=12000
|
|
||||||
HTTPS_PORT=12001
|
|
||||||
HTTP3_PORT=12002
|
|
||||||
|
|
||||||
DATABASE_URL=postgresql://app:app@database:5432/app?serverVersion=16&charset=utf8
|
|
||||||
MERCURE_URL=https://forum.lisoveliy.su/.well-known/mercure
|
|
||||||
MERCURE_PUBLIC_URL=https://forum.lisoveliy.su/.well-known/mercure
|
|
||||||
MERCURE_JWT_SECRET="!ChangeThisMercureHubJWTSecretKey!"
|
|
||||||
CADDY_MERCURE_JWT_SECRET="1212121212123kkk322k3k"
|
|
@ -1,53 +1,19 @@
|
|||||||
:root {
|
:root {
|
||||||
--primary-color: #f6cd26;
|
--primary-color: #f6cd26;
|
||||||
--second-color: black;
|
|
||||||
--line-width: 2px;
|
|
||||||
--space: 12px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: var(--second-color);
|
background-color: black;
|
||||||
color: var(--primary-color);
|
color: var(--primary-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.block {
|
.block {
|
||||||
border: solid var(--primary-color) var(--line-width);
|
border: solid var(--primary-color) 2px;
|
||||||
padding: var(--space);
|
padding: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.list {
|
.list {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: var(--space);
|
gap: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:visited, a:hover {
|
|
||||||
color: var(--primary-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
button {
|
|
||||||
align-items: center;
|
|
||||||
padding: var(--space);
|
|
||||||
background: var(--second-color);
|
|
||||||
color: var(--primary-color);
|
|
||||||
border: solid var(--primary-color) var(--line-width);
|
|
||||||
}
|
|
||||||
|
|
||||||
button:hover,
|
|
||||||
button:focus {
|
|
||||||
background: var(--primary-color);
|
|
||||||
color: black;
|
|
||||||
cursor: pointer;
|
|
||||||
border: solid var(--second-color) var(--line-width);
|
|
||||||
outline: calc(var(--line-width) * 2) var(--primary-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
textarea {
|
|
||||||
padding: var(--space);
|
|
||||||
color: var(--primary-color);
|
|
||||||
background-color: var(--second-color);
|
|
||||||
border: solid var(--primary-color) var(--line-width);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -6,6 +6,8 @@ services:
|
|||||||
SERVER_NAME: ${SERVER_NAME:-localhost}, php:80
|
SERVER_NAME: ${SERVER_NAME:-localhost}, php:80
|
||||||
MERCURE_PUBLISHER_JWT_KEY: ${CADDY_MERCURE_JWT_SECRET:-!ChangeThisMercureHubJWTSecretKey!}
|
MERCURE_PUBLISHER_JWT_KEY: ${CADDY_MERCURE_JWT_SECRET:-!ChangeThisMercureHubJWTSecretKey!}
|
||||||
MERCURE_SUBSCRIBER_JWT_KEY: ${CADDY_MERCURE_JWT_SECRET:-!ChangeThisMercureHubJWTSecretKey!}
|
MERCURE_SUBSCRIBER_JWT_KEY: ${CADDY_MERCURE_JWT_SECRET:-!ChangeThisMercureHubJWTSecretKey!}
|
||||||
|
# Run "composer require symfony/orm-pack" to install and configure Doctrine ORM
|
||||||
|
DATABASE_URL: postgresql://${POSTGRES_USER:-app}:${POSTGRES_PASSWORD:-app}@database:5432/${POSTGRES_DB:-app}?serverVersion=${POSTGRES_VERSION:-16}&charset=${POSTGRES_CHARSET:-utf8}
|
||||||
# Run "composer require symfony/mercure-bundle" to install and configure the Mercure integration
|
# Run "composer require symfony/mercure-bundle" to install and configure the Mercure integration
|
||||||
MERCURE_URL: ${CADDY_MERCURE_URL:-http://php/.well-known/mercure}
|
MERCURE_URL: ${CADDY_MERCURE_URL:-http://php/.well-known/mercure}
|
||||||
MERCURE_PUBLIC_URL: ${CADDY_MERCURE_PUBLIC_URL:-https://${SERVER_NAME:-localhost}:${HTTPS_PORT:-443}/.well-known/mercure}
|
MERCURE_PUBLIC_URL: ${CADDY_MERCURE_PUBLIC_URL:-https://${SERVER_NAME:-localhost}:${HTTPS_PORT:-443}/.well-known/mercure}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user