Skip to content

Commit

Permalink
Update URL to web page
Browse files Browse the repository at this point in the history
  • Loading branch information
xyproto committed Jun 17, 2024
1 parent ebe984d commit f1d9b48
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ FROM alpine
WORKDIR /srv

# Copy over the application that is about to be served
COPY --from=0 /app /srv/orbiton.zip
COPY --from=0 /app /srv/roboticoverlords.org/orbiton

# Also add a symlink for localhost to one of the domains
RUN ln -s /srv/orbiton.zip /srv/localhost
RUN ln -s /srv/roboticoverlords.org/orbiton /srv/localhost

# Install Algernon
ENV ALGERNON_VERSION='1.15.3'
Expand Down
2 changes: 1 addition & 1 deletion web/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# orbiton.zip web site
# roboticoverlords.org/orbiton web site

`index.html` is currently just a placeholder.

Expand Down
6 changes: 3 additions & 3 deletions web/docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fi

build() {
# Build a docker image
docker build . -f Dockerfile -t "orbiton.zip:3000/orbiton:$DOCKER_TAG"
docker build . -f Dockerfile -t "roboticoverlords.org/orbiton:3000/orbiton:$DOCKER_TAG"
}

launch() {
Expand All @@ -31,7 +31,7 @@ launch() {
-p 8080 \
--name orbiton_dev \
--network host \
"orbiton.zip:3000/orbiton:$DOCKER_TAG"
"roboticoverlords.org/orbiton:3000/orbiton:$DOCKER_TAG"
}

main() {
Expand All @@ -44,7 +44,7 @@ main() {
buildpush)
# Build, tag and push
build && \
docker tag "orbiton.zip:3000/orbiton:$DOCKER_TAG" \
docker tag "roboticoverlords.org/orbiton:3000/orbiton:$DOCKER_TAG" \
"europe-north1-docker.pkg.dev/personal-306017/homepage/orbiton:$DOCKER_TAG" && \
docker push europe-north1-docker.pkg.dev/personal-306017/homepage/orbiton:$DOCKER_TAG
;;
Expand Down
4 changes: 2 additions & 2 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<link rel="stylesheet" href="style.css">
<meta property="og:title" content="Orbiton - Open Source text editor and IDE limited to VT100" />
<meta property="og:description" content="Orbiton is a configuration-free, portable and open source text editor and IDE limited to VT100. Suitable for writing git commit messages, editing Markdown, config files, source code, viewing man pages and for quick edit-compile cycles when programming. Includes syntax highlighting, smart cursor movement, jump-to-error, rainbow parentheses, macros, tab completion, cut/paste portals and a gdb front-end.">
<meta property="og:image" content="https://orbiton.zip/screenshot3.png" />
<meta property="og:url" content="https://orbiton.zip/" />
<meta property="og:image" content="https://roboticoverlords.org/orbiton/screenshot3.png" />
<meta property="og:url" content="https://roboticoverlords.org/orbiton/" />
<meta name="twitter:card" content="summary_large_image">
<link rel="icon" href="/favicon.ico">
</head>
Expand Down
2 changes: 1 addition & 1 deletion web/robots.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ---===[ robots.txt ]===---

Sitemap: https://orbiton.zip/sitemap.xml
Sitemap: https://roboticoverlords.org/orbiton/sitemap.xml

# PartyBob
User-agent: PartyBob
Expand Down
2 changes: 1 addition & 1 deletion web/sitemap.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://orbiton.zip/</loc>
<loc>http://roboticoverlords.org/orbiton/</loc>
<lastmod>2023-06-16</lastmod>
<changefreq>monthly</changefreq>
<priority>1.0</priority>
Expand Down

0 comments on commit f1d9b48

Please sign in to comment.