Skip to content

Commit

Permalink
changed gh username
Browse files Browse the repository at this point in the history
  • Loading branch information
aplotor committed May 10, 2024
1 parent f58dd8a commit da454c5
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

thank you for showing interest in the development of this project. by contributing, you agree to these guidelines <!-- inspirations from: https://github.com/ppy/osu/blob/master/CONTRIBUTING.md, https://github.com/louislam/uptime-kuma/blob/master/CONTRIBUTING.md -->

- [issues](https://github.com/jc9108/expanse/issues)::
- [issues](https://github.com/aplotor/expanse/issues)::
- before opening a new issue, try searching existing issues first
- when submitting a bug report::
- make sure you are on the latest version of the app in case the bug has already been patched
- explicitly state what version of the app you are using (find it on line 30 of your local `expanse/compose.prod.yaml`)
- try to include as much detail as possible, relevant logs, and steps to reproduce the bug
- please answer follow up questions, if any, in a timely manner
- refrain from posting "+1" comments. use the thumbs reaction instead
- [PRs](https://github.com/jc9108/expanse/pulls)::
- [PRs](https://github.com/aplotor/expanse/pulls)::
- before starting a new PR, try searching existing issues and PRs first
- what PRs are accepted?
- ✅ usually accept::
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ selfhosted multi-user web app for externally storing Reddit items (saved, create
- docker ([managed](https://docs.docker.com/engine/install/linux-postinstall/#manage-docker-as-a-non-root-user)/[rootless](https://docs.docker.com/engine/security/rootless))
- docker compose
- setup::
1. clone repo: `git clone https://github.com/jc9108/expanse.git`
1. clone repo: `git clone https://github.com/aplotor/expanse.git`
2. cd into repo: `cd ./expanse/`
3. create environment variables file: `cp ./backend/.env_example ./backend/.env_prod`
4. fill out the values in the `./backend/.env_prod` file
Expand Down
2 changes: 1 addition & 1 deletion SPONSORS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# sponsors

support this project by becoming a [sponsor](https://github.com/sponsors/jc9108)
support this project by becoming a [sponsor](https://github.com/sponsors/aplotor)

- big thanks to::
- [jlynnes](https://github.com/jlynnes)
Expand Down
4 changes: 2 additions & 2 deletions compose.prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
app:
depends_on:
- db
image: ghcr.io/jc9108/expanse:latest
image: ghcr.io/aplotor/expanse:latest
working_dir: /app/
volumes:
- backups:/app/backend/backups/
Expand All @@ -27,7 +27,7 @@ services:
ports:
- "1301:1301"
environment:
- VERSION=1.2.12
- VERSION=1.2.13
env_file:
- ./backend/.env_prod
entrypoint: []
Expand Down
2 changes: 1 addition & 1 deletion expanse.service
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Unit]
Description=selfhosted multi-user web app for externally storing Reddit items (saved, created, upvoted, downvoted, hidden) to bypass Reddit's 1000-item listing limits
Documentation=https://github.com/jc9108/expanse
Documentation=https://github.com/aplotor/expanse
Wants=network-online.target
Requires=docker.service
After=network-online.target docker.service
Expand Down
2 changes: 1 addition & 1 deletion frontend/source/globals.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as socket_io_client from "socket.io-client";
const readonly = {
app_name: "expanse",
description: "selfhosted multi-user web app for externally storing Reddit items (saved, created, upvoted, downvoted, hidden) to bypass Reddit's 1000-item listing limits",
repo: "https://github.com/jc9108/expanse",
repo: "https://github.com/aplotor/expanse",
backend: (env_static_public.RUN == "dev" ? "/backend" : ""),
socket: socket_io_client.io((env_static_public.RUN == "dev" ? `http://${(app_env.browser ? window.location.hostname : "localhost")}:${Number.parseInt(env_static_public.PORT)+1}` : ""))
};
Expand Down

0 comments on commit da454c5

Please sign in to comment.