mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2025-02-19 19:44:16 +02:00
feat: Added renovate configuration (#2377)
This commit is contained in:
parent
0b24f45965
commit
184c5820af
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
|
||||
|
||||
```console
|
||||
yarn install
|
||||
npm install
|
||||
```
|
||||
|
||||
## Local Development
|
||||
|
||||
```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.
|
||||
@ -19,7 +19,7 @@ This command starts a local development server and open up a browser window. Mos
|
||||
## Build
|
||||
|
||||
```console
|
||||
yarn build
|
||||
npm build
|
||||
```
|
||||
|
||||
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
|
||||
|
||||
```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.
|
||||
|
@ -1,6 +1,5 @@
|
||||
{
|
||||
"name": "docusaurus",
|
||||
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
Loading…
x
Reference in New Issue
Block a user