-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Transferred files to tmp folder * Transferred files to public-site folder * Fixed name * Fixed name * Fixed name * Corrected config * Added search, changed port * Updated search * Re-arranged files * Re-arranged files * Re-arranged files * Fixed configs * Fixed styles * Removed outdated files. Fixed main page * Added team cards * Fixed community folder. Added Makefile * Style * Style * Style * Style * Style * Docker ignore * Fixing broken links * Fixing broken links * Fixing broken links * Restored ext dns info * Cleaned cache * Turn off cache * Turn on cache * Set new npm * build with acr * removed demo files * Fixed favicon and style. Fixed LInk to radix-concept * Fixed favicon and style. Fixed LInk to radix-concept * Fixing underline * Fixing underline * Added sidebars * Added sidebars * Reduced size of photos * Fixed <> * Fixed tips * Removed web-share * Fixed ref * Added what's new * Fixed brocken links * Fixed style * Fixed style * Rearranged pages for radix-config, private link and code integration * Rearranged main menu * Fixed link * Changed page title * Fixed font
- Loading branch information
Showing
308 changed files
with
16,587 additions
and
4,591 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 |
---|---|---|
|
@@ -5,3 +5,4 @@ build | |
.jekyll-cache/ | ||
.jekyll-metadata | ||
**/.DS_Store | ||
**/node_modules |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
node_modules | ||
README.md | ||
dev.Dockerfile | ||
Dockerfile | ||
docker-compose.yml | ||
.dockerignore | ||
build |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Dependencies | ||
**/node_modules | ||
|
||
# Production | ||
**/build | ||
|
||
# Generated files | ||
.docusaurus | ||
.cache-loader | ||
|
||
# Misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* |
This file was deleted.
Oops, something went wrong.
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,12 +1,14 @@ | ||
FROM docker.io/node:21-alpine3.18 as builder | ||
FROM docker.io/node:20.11.1-alpine3.19 as builder | ||
|
||
WORKDIR /site | ||
COPY ./docs . | ||
COPY . . | ||
RUN npm install -g [email protected] | ||
RUN npm install | ||
RUN npm run build | ||
|
||
FROM docker.io/nginxinc/nginx-unprivileged:1.25.2-alpine | ||
WORKDIR /site | ||
COPY --from=builder /site/src/.vuepress/dist /site | ||
COPY --from=builder /site/build /site | ||
COPY nginx.conf /etc/nginx/conf.d/default.conf | ||
EXPOSE 8080 | ||
USER 101 |
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
.PHONY: lint | ||
lint: | ||
npm run "lint" | ||
npm run "lint-ts" | ||
|
||
|
||
.PHONY: lint-strict | ||
lint-strict: | ||
npm run "lint-strict" | ||
|
||
.PHONY: run | ||
run: | ||
npm run start | ||
|
||
.PHONY: build-dist run-dist run-dist-rebuilt | ||
|
||
build-dist: | ||
npm run build | ||
|
||
run-dist: | ||
npm run serve | ||
|
||
run-dist-rebuilt: build-dist run-dist | ||
|
||
.PHONY: run-docker-dev | ||
run-docker-dev: | ||
docker compose -f docker-compose.yml up | ||
|
||
.PHONY: build-docker | ||
build-docker: | ||
docker build . -t public-site | ||
|
||
.PHONY: run-docker | ||
run-docker: | ||
docker run -it -p 8080:8080 public-site | ||
|
||
.PHONY: run-docker-rebuilt | ||
run-docker-rebuilt: build-docker run-docker | ||
|
||
.PHONY: down | ||
down: | ||
docker compose down | ||
|
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
presets: [require.resolve('@docusaurus/core/lib/babel/preset')], | ||
}; |
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,8 @@ | ||
FROM docker.io/node:21-alpine3.18 | ||
FROM docker.io/node:21-alpine3.18 as builder | ||
|
||
WORKDIR /site | ||
COPY ./docs/package.json ./docs/package-lock.json /site/ | ||
COPY . . | ||
RUN npm install | ||
COPY ./docs . | ||
RUN npm run build | ||
|
||
CMD npm run dev |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
title: Community | ||
displayed_sidebar: communitySidebar | ||
--- | ||
import RadixTeam from '../../src/components/RadixTeam/index.tsx' | ||
|
||
# Community | ||
|
||
Radix aims to be _the_ platform to build and deploy code within Equinor. It can only be that if it helps Equinor developers — that's you — succeed. | ||
|
||
Of course, Radix is developed and maintained by Equinor developers as well. That means we want to work together to build the best platform we can. If you have problems or suggestions, we want to hear from you! It helps. | ||
|
||
:::tip Hello | ||
We are based in Forus Øst in Stavanger. If you see us on the corridor, say hello! | ||
::: | ||
|
||
![radix team](/images/Toppbilde.jpg) | ||
|
||
## On Slack | ||
|
||
If you'd like to discuss the platform, features or improvements, head on to the main [Omnia Radix channel](https://equinor.slack.com/messages/C8U7XGGAJ). Stuck? App not building? Don't understand the docs? the place to ask is in [the support channel](https://equinor.slack.com/messages/CBKM6N2JY). | ||
|
||
Let us together build the Radix community!.. | ||
|
||
## On GitHub | ||
|
||
If you think you found a bug, or you have a concrete proposal, [log an issue](https://github.com/equinor/radix/issues) on GitHub. We have multiple repositories, but all issues are tracked in **radix repo**. | ||
|
||
## Release register | ||
|
||
New features are publicly announced in the [Omnia Radix Slack channel](https://equinor.slack.com/messages/C8U7XGGAJ), and added to the release register page. | ||
|
||
Check out what's new in the [Release register](/docs/docs/topic-releases/index.md) | ||
|
||
## The Radix team | ||
|
||
<RadixTeam /> |
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
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes.
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.