Skip to content

Commit f318657

Browse files
Organisation update, steveiliop56 to tinyauthapp (#793)
* infrastructure and docs * code * fix issue templates * chore: fix scoreboard url * chore: remove migration warning * chore: fix readme docs link --------- Co-authored-by: Stavros <steveiliop56@gmail.com>
1 parent 3906e50 commit f318657

62 files changed

Lines changed: 151 additions & 151 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name: Bug report
33
about: Create a report to help improve Tinyauth
44
title: "[BUG]"
55
labels: bug
6-
assignees: steveiliop56
6+
assignees:
7+
- steveiliop56
78

89
---
910

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name: Feature request
33
about: Suggest an idea for this project
44
title: "[FEATURE]"
55
labels: enhancement
6-
assignees: steveiliop56
6+
assignees:
7+
- steveiliop56
78

89
---
910

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
- name: Build
8181
run: |
8282
cp -r frontend/dist internal/assets/dist
83-
go build -ldflags "-s -w -X github.com/steveiliop56/tinyauth/internal/config.Version=${{ needs.generate-metadata.outputs.VERSION }} -X github.com/steveiliop56/tinyauth/internal/config.CommitHash=${{ needs.generate-metadata.outputs.COMMIT_HASH }} -X github.com/steveiliop56/tinyauth/internal/config.BuildTimestamp=${{ needs.generate-metadata.outputs.BUILD_TIMESTAMP }}" -o tinyauth-amd64 ./cmd/tinyauth
83+
go build -ldflags "-s -w -X github.com/tinyauthapp/tinyauth/internal/config.Version=${{ needs.generate-metadata.outputs.VERSION }} -X github.com/tinyauthapp/tinyauth/internal/config.CommitHash=${{ needs.generate-metadata.outputs.COMMIT_HASH }} -X github.com/tinyauthapp/tinyauth/internal/config.BuildTimestamp=${{ needs.generate-metadata.outputs.BUILD_TIMESTAMP }}" -o tinyauth-amd64 ./cmd/tinyauth
8484
env:
8585
CGO_ENABLED: 0
8686

@@ -126,7 +126,7 @@ jobs:
126126
- name: Build
127127
run: |
128128
cp -r frontend/dist internal/assets/dist
129-
go build -ldflags "-s -w -X github.com/steveiliop56/tinyauth/internal/config.Version=${{ needs.generate-metadata.outputs.VERSION }} -X github.com/steveiliop56/tinyauth/internal/config.CommitHash=${{ needs.generate-metadata.outputs.COMMIT_HASH }} -X github.com/steveiliop56/tinyauth/internal/config.BuildTimestamp=${{ needs.generate-metadata.outputs.BUILD_TIMESTAMP }}" -o tinyauth-arm64 ./cmd/tinyauth
129+
go build -ldflags "-s -w -X github.com/tinyauthapp/tinyauth/internal/config.Version=${{ needs.generate-metadata.outputs.VERSION }} -X github.com/tinyauthapp/tinyauth/internal/config.CommitHash=${{ needs.generate-metadata.outputs.COMMIT_HASH }} -X github.com/tinyauthapp/tinyauth/internal/config.BuildTimestamp=${{ needs.generate-metadata.outputs.BUILD_TIMESTAMP }}" -o tinyauth-arm64 ./cmd/tinyauth
130130
env:
131131
CGO_ENABLED: 0
132132

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- name: Build
5757
run: |
5858
cp -r frontend/dist internal/assets/dist
59-
go build -ldflags "-s -w -X github.com/steveiliop56/tinyauth/internal/config.Version=${{ needs.generate-metadata.outputs.VERSION }} -X github.com/steveiliop56/tinyauth/internal/config.CommitHash=${{ needs.generate-metadata.outputs.COMMIT_HASH }} -X github.com/steveiliop56/tinyauth/internal/config.BuildTimestamp=${{ needs.generate-metadata.outputs.BUILD_TIMESTAMP }}" -o tinyauth-amd64 ./cmd/tinyauth
59+
go build -ldflags "-s -w -X github.com/tinyauthapp/tinyauth/internal/config.Version=${{ needs.generate-metadata.outputs.VERSION }} -X github.com/tinyauthapp/tinyauth/internal/config.CommitHash=${{ needs.generate-metadata.outputs.COMMIT_HASH }} -X github.com/tinyauthapp/tinyauth/internal/config.BuildTimestamp=${{ needs.generate-metadata.outputs.BUILD_TIMESTAMP }}" -o tinyauth-amd64 ./cmd/tinyauth
6060
env:
6161
CGO_ENABLED: 0
6262

@@ -99,7 +99,7 @@ jobs:
9999
- name: Build
100100
run: |
101101
cp -r frontend/dist internal/assets/dist
102-
go build -ldflags "-s -w -X github.com/steveiliop56/tinyauth/internal/config.Version=${{ needs.generate-metadata.outputs.VERSION }} -X github.com/steveiliop56/tinyauth/internal/config.CommitHash=${{ needs.generate-metadata.outputs.COMMIT_HASH }} -X github.com/steveiliop56/tinyauth/internal/config.BuildTimestamp=${{ needs.generate-metadata.outputs.BUILD_TIMESTAMP }}" -o tinyauth-arm64 ./cmd/tinyauth
102+
go build -ldflags "-s -w -X github.com/tinyauthapp/tinyauth/internal/config.Version=${{ needs.generate-metadata.outputs.VERSION }} -X github.com/tinyauthapp/tinyauth/internal/config.CommitHash=${{ needs.generate-metadata.outputs.COMMIT_HASH }} -X github.com/tinyauthapp/tinyauth/internal/config.BuildTimestamp=${{ needs.generate-metadata.outputs.BUILD_TIMESTAMP }}" -o tinyauth-arm64 ./cmd/tinyauth
103103
env:
104104
CGO_ENABLED: 0
105105

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Contributing to Tinyauth is straightforward. Follow the steps below to set up a
1515
Start by cloning the repository:
1616

1717
```sh
18-
git clone https://github.com/steveiliop56/tinyauth
18+
git clone https://github.com/tinyauthapp/tinyauth
1919
cd tinyauth
2020
```
2121

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ COPY ./internal ./internal
3838
COPY --from=frontend-builder /frontend/dist ./internal/assets/dist
3939

4040
RUN CGO_ENABLED=0 go build -ldflags "-s -w \
41-
-X github.com/steveiliop56/tinyauth/internal/config.Version=${VERSION} \
42-
-X github.com/steveiliop56/tinyauth/internal/config.CommitHash=${COMMIT_HASH} \
43-
-X github.com/steveiliop56/tinyauth/internal/config.BuildTimestamp=${BUILD_TIMESTAMP}" ./cmd/tinyauth
41+
-X github.com/tinyauthapp/tinyauth/internal/config.Version=${VERSION} \
42+
-X github.com/tinyauthapp/tinyauth/internal/config.CommitHash=${COMMIT_HASH} \
43+
-X github.com/tinyauthapp/tinyauth/internal/config.BuildTimestamp=${BUILD_TIMESTAMP}" ./cmd/tinyauth
4444

4545
# Runner
4646
FROM alpine:3.23 AS runner

Dockerfile.distroless

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ COPY --from=frontend-builder /frontend/dist ./internal/assets/dist
4040
RUN mkdir -p data
4141

4242
RUN CGO_ENABLED=0 go build -ldflags "-s -w \
43-
-X github.com/steveiliop56/tinyauth/internal/config.Version=${VERSION} \
44-
-X github.com/steveiliop56/tinyauth/internal/config.CommitHash=${COMMIT_HASH} \
45-
-X github.com/steveiliop56/tinyauth/internal/config.BuildTimestamp=${BUILD_TIMESTAMP}" ./cmd/tinyauth
43+
-X github.com/tinyauthapp/tinyauth/internal/config.Version=${VERSION} \
44+
-X github.com/tinyauthapp/tinyauth/internal/config.CommitHash=${COMMIT_HASH} \
45+
-X github.com/tinyauthapp/tinyauth/internal/config.BuildTimestamp=${BUILD_TIMESTAMP}" ./cmd/tinyauth
4646

4747
# Runner
4848
FROM gcr.io/distroless/static-debian12:latest AS runner

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ webui: clean-webui
3737
# Build the binary
3838
binary: webui
3939
CGO_ENABLED=$(CGO_ENABLED) go build -ldflags "-s -w \
40-
-X github.com/steveiliop56/tinyauth/internal/config.Version=${TAG_NAME} \
41-
-X github.com/steveiliop56/tinyauth/internal/config.CommitHash=${COMMIT_HASH} \
42-
-X github.com/steveiliop56/tinyauth/internal/config.BuildTimestamp=${BUILD_TIMESTAMP}" \
40+
-X github.com/tinyauthapp/tinyauth/internal/config.Version=${TAG_NAME} \
41+
-X github.com/tinyauthapp/tinyauth/internal/config.CommitHash=${COMMIT_HASH} \
42+
-X github.com/tinyauthapp/tinyauth/internal/config.BuildTimestamp=${BUILD_TIMESTAMP}" \
4343
-o ${BIN_NAME} ./cmd/tinyauth
4444

4545
# Build for amd64

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
</div>
66

77
<div align="center">
8-
<img alt="License" src="https://img.shields.io/github/license/steveiliop56/tinyauth">
9-
<img alt="Release" src="https://img.shields.io/github/v/release/steveiliop56/tinyauth">
10-
<img alt="Issues" src="https://img.shields.io/github/issues/steveiliop56/tinyauth">
11-
<img alt="Tinyauth CI" src="https://github.com/steveiliop56/tinyauth/actions/workflows/ci.yml/badge.svg">
8+
<img alt="License" src="https://img.shields.io/github/license/tinyauthapp/tinyauth">
9+
<img alt="Release" src="https://img.shields.io/github/v/release/tinyauthapp/tinyauth">
10+
<img alt="Issues" src="https://img.shields.io/github/issues/tinyauthapp/tinyauth">
11+
<img alt="Tinyauth CI" src="https://github.com/tinyauthapp/tinyauth/actions/workflows/ci.yml/badge.svg">
1212
<a title="Crowdin" target="_blank" href="https://crowdin.com/project/tinyauth"><img src="https://badges.crowdin.net/tinyauth/localized.svg"></a>
13-
<a href="https://scorecard.dev/viewer/?uri=github.com/steveiliop56/tinyauth" target="_blank" title="OpenSSF Scorecard">
14-
<img src="https://api.scorecard.dev/projects/github.com/steveiliop56/tinyauth/badge">
13+
<a href="https://scorecard.dev/viewer/?uri=github.com/tinyauthapp/tinyauth" target="_blank" title="OpenSSF Scorecard">
14+
<img src="https://api.scorecard.dev/projects/github.com/tinyauthapp/tinyauth/badge">
1515
</a>
1616
</div>
1717

@@ -42,15 +42,15 @@ If you are still not sure if Tinyauth suits your needs you can try out the [demo
4242

4343
You can find documentation and guides on all of the available configuration of Tinyauth in the [website](https://tinyauth.app).
4444

45-
If you wish to contribute to the documentation head over to the [repository](https://github.com/steveiliop56/tinyauth-docs).
45+
If you wish to contribute to the documentation head over to the [repository](https://github.com/tinyauthapp/docs).
4646

4747
## Discord
4848

4949
Tinyauth has a [Discord](https://discord.gg/eHzVaCzRRd) server. Feel free to hop in to chat about self-hosting, homelabs and of course Tinyauth. See you there!
5050

5151
## Contributing
5252

53-
All contributions to the codebase are welcome! If you have any free time, feel free to pick up an [issue](https://github.com/steveiliop56/tinyauth/issues) or add your own missing features. Make sure to check out the [contributing guide](./CONTRIBUTING.md) for instructions on how to get the development server up and running.
53+
All contributions to the codebase are welcome! If you have any free time, feel free to pick up an [issue](https://github.com/tinyauthapp/tinyauth/issues) or add your own missing features. Make sure to check out the [contributing guide](./CONTRIBUTING.md) for instructions on how to get the development server up and running.
5454

5555
## Localization
5656

@@ -75,4 +75,4 @@ A big thank you to the following people for providing me with more coffee:
7575

7676
## Star History
7777

78-
[![Star History Chart](https://api.star-history.com/svg?repos=steveiliop56/tinyauth&type=Date)](https://www.star-history.com/#steveiliop56/tinyauth&Date)
78+
[![Star History Chart](https://api.star-history.com/svg?repos=tinyauthapp/tinyauth&type=Date)](https://www.star-history.com/#tinyauthapp/tinyauth&Date)

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Supported Versions
44

5-
It is recommended to use the [latest](https://github.com/steveiliop56/tinyauth/releases/latest) available version of tinyauth. This is because it includes security fixes, new features and dependency updates. Older versions, especially major ones, are not supported and won't receive security or patch updates.
5+
It is recommended to use the [latest](https://github.com/tinyauthapp/tinyauth/releases/latest) available version of tinyauth. This is because it includes security fixes, new features and dependency updates. Older versions, especially major ones, are not supported and won't receive security or patch updates.
66

77
## Reporting a Vulnerability
88

0 commit comments

Comments
 (0)