You've already forked oauth2-proxy
mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2025-07-13 01:40:48 +02:00
feat: Added renovate configuration (#2377)
This commit is contained in:
24
.github/renovate.json5
vendored
Normal file
24
.github/renovate.json5
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
$schema: "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
semanticCommits: "auto",
|
||||||
|
enabledManagers: [
|
||||||
|
"dockerfile",
|
||||||
|
"gomod",
|
||||||
|
"github-actions",
|
||||||
|
"npm",
|
||||||
|
"regex",
|
||||||
|
],
|
||||||
|
customManagers: [
|
||||||
|
{
|
||||||
|
customType: "regex",
|
||||||
|
fileMatch: [
|
||||||
|
"^Makefile"
|
||||||
|
],
|
||||||
|
matchStrings: [
|
||||||
|
"DOCKER_BUILD_RUNTIME_IMAGE_ALPINE\\s+?\\?= alpine:(?<currentValue>.*)\\s"
|
||||||
|
],
|
||||||
|
depNameTemplate: "alpine",
|
||||||
|
datasourceTemplate: "docker",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}
|
@ -5,13 +5,13 @@ This website is built using [Docusaurus 2](https://v2.docusaurus.io/), a modern
|
|||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
```console
|
```console
|
||||||
yarn install
|
npm install
|
||||||
```
|
```
|
||||||
|
|
||||||
## Local Development
|
## Local Development
|
||||||
|
|
||||||
```console
|
```console
|
||||||
yarn start
|
npm start
|
||||||
```
|
```
|
||||||
|
|
||||||
This command starts a local development server and open up a browser window. Most changes are reflected live without having to restart the server.
|
This command starts a local development server and open up a browser window. Most changes are reflected live without having to restart the server.
|
||||||
@ -19,7 +19,7 @@ This command starts a local development server and open up a browser window. Mos
|
|||||||
## Build
|
## Build
|
||||||
|
|
||||||
```console
|
```console
|
||||||
yarn build
|
npm build
|
||||||
```
|
```
|
||||||
|
|
||||||
This command generates static content into the `build` directory and can be served using any static contents hosting service.
|
This command generates static content into the `build` directory and can be served using any static contents hosting service.
|
||||||
@ -27,7 +27,7 @@ This command generates static content into the `build` directory and can be serv
|
|||||||
## Deployment
|
## Deployment
|
||||||
|
|
||||||
```console
|
```console
|
||||||
GIT_USER=<Your GitHub username> USE_SSH=true yarn deploy
|
GIT_USER=<Your GitHub username> USE_SSH=true npm deploy
|
||||||
```
|
```
|
||||||
|
|
||||||
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.
|
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "docusaurus",
|
"name": "docusaurus",
|
||||||
|
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
Reference in New Issue
Block a user