Skip to content

Commit

Permalink
Rename system
Browse files Browse the repository at this point in the history
  • Loading branch information
foodelevator committed May 8, 2024
1 parent e566dfd commit b1776f5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: dokku/[email protected]
with:
ssh_private_key: ${{ secrets.MEDUSA_GLOBAL_DEPLOY_KEY }}
git_remote_url: ssh://[email protected]/aaaallltt
git_remote_url: ssh://[email protected]/aaallt2
# force might feel risky, but there is no good reason why the server
# should ever not be a mirror of the deploy branch. And the errors we
# could get otherwise would probably be nasty to deal with
Expand Down
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
FROM golang:1.22-alpine3.19 AS build

WORKDIR /src

COPY . .

RUN go build -o /aaaallltt
RUN go build -o /aaallt2

FROM alpine:3.19

COPY --from=build /aaaallltt /aaaallltt
COPY --from=build /aaallt2 /aaallt2

CMD ["/aaaallltt"]
CMD ["/aaallt2"]
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/datasektionen/aaaallltt
module github.com/datasektionen/aaallt2

go 1.22.1
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aaaallltt</title>
<title>Aaallt</title>
<link rel="stylesheet" href="/index.css" lang="text/css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" lang="text/css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,300,700,400italic,700italic,900" lang="text/css">
Expand All @@ -15,7 +15,7 @@
<div id="methone-container-replace"></div>
<script>
window.methone_conf = {
system_name: "Aaaallltt",
system_name: "Aaallt",
color_scheme: "orange",
}
</script>
Expand Down
6 changes: 3 additions & 3 deletions systems.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ var systems = []system{{
Color: "#ec5f99",
Sensitive: true,
}, {
Name: "Aaaallltt",
Name: "Aaallt",
Description: "Det här \"systemet\"",
URL: "https://aaaallltt.datasektionen.se",
Icon: "https://aaaallltt.datasektionen.se/favicon-96x96.png",
URL: "https://aaallt.datasektionen.se",
Icon: "https://aaallt.datasektionen.se/favicon-96x96.png",
Color: "#ffca28",
}, {
Name: "Betting",
Expand Down

0 comments on commit b1776f5

Please sign in to comment.