login screen and related auth logic implemented #1

Merged
optclblast merged 4 commits from login_screen into master 2024-09-04 21:30:18 +00:00
2 changed files with 24 additions and 2 deletions
Showing only changes of commit 3446a84af3 - Show all commits

View File

@ -9,5 +9,26 @@ services:
ports:
- 5432:5432
minio:
image: quay.io/minio/minio:RELEASE.2024-08-29T01-40-52Z
command: server --console-address ":9001" http://minio/data{1...2}
hostname: minio
volumes:
- data-1:/data1
- data-2:/data2
expose:
- "9000"
- "9001"
environment:
MINIO_ROOT_USER: minioadmin
MINIO_ROOT_PASSWORD: minioadmin
healthcheck:
test: ["CMD", "mc", "ready", "local"]
interval: 5s
timeout: 5s
retries: 5
volumes:
draincore-data: {}
draincore-data:
data-1:
data-2:

View File

@ -1,7 +1,8 @@
defmodule DrainCloudCoreWeb.AuthController do
use DrainCloudCoreWeb, :controller
alias DrainCloudCoreWeb.Request, as: Request
def logon(conn, _params) do
if
end
end