-
-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[frontend] Restructure Frontend Sources (#634)
* 🐸restructure frontend stuff, include admin and future user panel in main repo, properly deduplicate bundles for css+js across uses * rename bundled to dist, caught by gitignore * re-include status.css for profile template * default to localhost * serve frontend panels * add todo message for abstraction * refactor oauth registration flow * oauth restructure * update footer template * change panel routes * remove superfluous css imports * write bundle to disk from test server, use forked budo-express * wrap all page content in container for robustness with addons etc injection other elements in body * update documentation, goreleaser, Dockerfile * update template meta tags * add AGPL-3.0+ license header everywhere * only attach update listener on EventEmitter * cleaner config for various frontend bundles * fix bundler script paths * Merge commit 'd191931932b9293ce1be44ed08a1e69b9fcc1e25' * fix up dockerfile, goreleaser * go mod tidy * add uglifyify * move status hide/show js to frontend bundle * fix stylesheet color( func regressions * update contributing docs for new build path * update goreleaser + docker building * resolve dependency paths properly * update package name * use api errorhandler Co-authored-by: tsmethurst <[email protected]>
- Loading branch information
1 parent
f30a581
commit b43f9ce
Showing
47 changed files
with
8,061 additions
and
1,918 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
.github | ||
cmd | ||
.vscode | ||
archive | ||
dist | ||
docs | ||
example | ||
internal | ||
scripts | ||
test | ||
testrig | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,31 @@ | ||
# syntax=docker/dockerfile:1.3 | ||
# stage 1: generate up-to-date swagger.yaml to put in the final container | ||
FROM --platform=${BUILDPLATFORM} quay.io/goswagger/swagger:v0.29.0 AS swagger | ||
|
||
# bundle the admin webapp | ||
FROM --platform=${BUILDPLATFORM} node:17.6.0-alpine3.15 AS admin_builder | ||
RUN apk update && apk upgrade --no-cache | ||
RUN apk add git | ||
COPY go.mod /go/src/github.com/superseriousbusiness/gotosocial/go.mod | ||
COPY go.sum /go/src/github.com/superseriousbusiness/gotosocial/go.sum | ||
COPY cmd /go/src/github.com/superseriousbusiness/gotosocial/cmd | ||
COPY internal /go/src/github.com/superseriousbusiness/gotosocial/internal | ||
WORKDIR /go/src/github.com/superseriousbusiness/gotosocial | ||
RUN swagger generate spec -o /go/src/github.com/superseriousbusiness/gotosocial/swagger.yaml --scan-models | ||
|
||
RUN git clone https://github.com/superseriousbusiness/gotosocial-admin | ||
WORKDIR /gotosocial-admin | ||
# stage 2: generate the web/assets/dist bundles | ||
FROM --platform=${BUILDPLATFORM} node:16.15.1-alpine3.15 AS bundler | ||
|
||
RUN npm install | ||
RUN node index.js | ||
COPY web web | ||
RUN yarn install --cwd web/source && \ | ||
BUDO_BUILD=1 node web/source && \ | ||
rm -r web/source | ||
|
||
FROM --platform=${TARGETPLATFORM} alpine:3.15.0 AS executor | ||
# stage 3: build the executor container | ||
FROM --platform=${TARGETPLATFORM} alpine:3.15.4 as executor | ||
|
||
# copy over the binary from the first stage | ||
# copy the dist binary created by goreleaser or build.sh | ||
COPY --chown=1000:1000 gotosocial /gotosocial/gotosocial | ||
|
||
# copy over the web directory with templates etc | ||
COPY --chown=1000:1000 web /gotosocial/web | ||
|
||
# copy over the admin directory | ||
COPY --chown=1000:1000 --from=admin_builder /gotosocial-admin/public /gotosocial/web/assets/admin | ||
# copy over the web directories with templates, assets etc | ||
COPY --chown=1000:1000 --from=bundler web /gotosocial/web | ||
COPY --chown=1000:1000 --from=swagger /go/src/github.com/superseriousbusiness/gotosocial/swagger.yaml web/assets/swagger.yaml | ||
|
||
WORKDIR "/gotosocial" | ||
ENTRYPOINT [ "/gotosocial/gotosocial", "server", "start" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.