Compare commits

...

2 commits

Author SHA1 Message Date
01c3663812 chore: Configure Renovate (#3)
Welcome to [Renovate](https://github.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin.

🚦 To activate Renovate, merge this Pull Request. To disable Renovate, simply close this Pull Request unmerged.

---
### Detected Package Files

 * `targets/forgejo/docker-compose.yml` (docker-compose)
 * `targets/gotosocial/docker-compose.yaml` (docker-compose)

### Configuration Summary

Based on the default config's presets, Renovate will:

  - Start dependency updates only once this onboarding PR is merged
  - Enable Renovate Dependency Dashboard creation.
  - Use semantic commit type `fix` for dependencies and `chore` for all others if semantic commits are in use.
  - Ignore `node_modules`, `bower_components`, `vendor` and various test/tests directories.
  - Group known monorepo packages together.
  - Use curated list of recommended non-monorepo package groupings.
  - Apply crowd-sourced package replacement rules.
  - Apply crowd-sourced workarounds for known problems with packages.
  - Enable Renovate Dependency Dashboard creation.

🔡 Do you want to change how Renovate upgrades your dependencies? Add your custom config to `renovate.json` in this branch. Renovate will update the Pull Request description the next time it runs.

---

### What to Expect

With your current configuration, Renovate will create 2 Pull Requests:

<details>
<summary>chore(deps): update codeberg.org/forgejo/forgejo docker tag to v1.21</summary>

  - Schedule: ["at any time"]
  - Branch name: `renovate/codeberg.org-forgejo-forgejo-1.x`
  - Merge into: `master`
  - Upgrade [codeberg.org/forgejo/forgejo](https://codeberg.org/forgejo/forgejo) to `1.21`

</details>

<details>
<summary>chore(deps): update codeberg.org/forgejo/forgejo docker tag to v7</summary>

  - Schedule: ["at any time"]
  - Branch name: `renovate/codeberg.org-forgejo-forgejo-7.x`
  - Merge into: `master`
  - Upgrade [codeberg.org/forgejo/forgejo](https://codeberg.org/forgejo/forgejo) to `7.0`

</details>

---

 Got questions? Check out Renovate's [Docs](https://docs.renovatebot.com/), particularly the Getting Started section.
If you need any further assistance then you can also [request help here](https://github.com/renovatebot/renovate/discussions).

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

<!--renovate-config-hash:388f0426bb11a51b7bc01c1d8659c05ffc5d272c9b8aa8a8bdffc0dd2574fce7-->

Co-authored-by: Renovate Bot <renovate-bot@git.batesnse.net>
Reviewed-on: ForgeFlux/ftest-control#3
Co-authored-by: Renovate Bot <renovate-bot@git.batsense.net>
Co-committed-by: Renovate Bot <renovate-bot@git.batsense.net>
2024-06-02 19:24:21 +05:30
Earl Warren
6614b9b8a5 simplify forgejo configuration (#2)
Reviewed-on: ForgeFlux/ftest-control#2
Co-authored-by: Earl Warren <contact@earl-warren.org>
Co-committed-by: Earl Warren <contact@earl-warren.org>
2023-10-13 16:08:32 +05:30
3 changed files with 25 additions and 103 deletions

21
renovate.json Normal file
View file

@ -0,0 +1,21 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":dependencyDashboard"
],
"labels": [
"renovate-bot"
],
"prHourlyLimit": 0,
"timezone": "Asia/kolkata",
"prCreation": "immediate",
"vulnerabilityAlerts": {
"enabled": true,
"labels": [
"renovate-bot",
"renovate-security",
"security"
]
}
}

View file

@ -1,101 +0,0 @@
APP_NAME = Forgejo: Beyond coding. We forge.
RUN_MODE = prod
RUN_USER = git
WORK_PATH = /data/gitea
[repository]
ROOT = /data/git/repositories
[repository.local]
LOCAL_COPY_PATH = /data/gitea/tmp/local-repo
[repository.upload]
TEMP_PATH = /data/gitea/uploads
[server]
APP_DATA_PATH = /data/gitea
DOMAIN = forgejo
SSH_DOMAIN = localhost
HTTP_PORT = 80
ROOT_URL = http://forgejo:80/
DISABLE_SSH = false
SSH_PORT = 22
SSH_LISTEN_PORT = 22
LFS_START_SERVER = true
LFS_JWT_SECRET = hqcWxK62ZAgYFGNPOj8JA2657ZBlaseX5EYjeibS5T8
OFFLINE_MODE = false
[database]
PATH = /data/gitea/gitea.db
DB_TYPE = sqlite3
HOST = localhost:3306
NAME = gitea
USER = root
PASSWD =
LOG_SQL = false
SCHEMA =
SSL_MODE = disable
[indexer]
ISSUE_INDEXER_PATH = /data/gitea/indexers/issues.bleve
[session]
PROVIDER_CONFIG = /data/gitea/sessions
PROVIDER = file
[picture]
AVATAR_UPLOAD_PATH = /data/gitea/avatars
REPOSITORY_AVATAR_UPLOAD_PATH = /data/gitea/repo-avatars
[attachment]
PATH = /data/gitea/attachments
[log]
MODE = console
LEVEL = info
ROOT_PATH = /data/gitea/log
[security]
INSTALL_LOCK = true
SECRET_KEY =
REVERSE_PROXY_LIMIT = 1
REVERSE_PROXY_TRUSTED_PROXIES = *
INTERNAL_TOKEN = eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYmYiOjE2OTU3NDkwOTd9.VhubdZ2bMMSXA7x5SEMo-ctXBnVTQPlHNbKJEZe2ZzI
PASSWORD_HASH_ALGO = pbkdf2_hi
[service]
DISABLE_REGISTRATION = false
REQUIRE_SIGNIN_VIEW = false
REGISTER_EMAIL_CONFIRM = false
ENABLE_NOTIFY_MAIL = false
ALLOW_ONLY_EXTERNAL_REGISTRATION = false
ENABLE_CAPTCHA = false
DEFAULT_KEEP_EMAIL_PRIVATE = false
DEFAULT_ALLOW_CREATE_ORGANIZATION = true
DEFAULT_ENABLE_TIMETRACKING = true
NO_REPLY_ADDRESS = noreply.localhost
[lfs]
PATH = /data/git/lfs
[mailer]
ENABLED = false
[openid]
ENABLE_OPENID_SIGNIN = true
ENABLE_OPENID_SIGNUP = true
[cron.update_checker]
ENABLED = false
[repository.pull-request]
DEFAULT_MERGE_STYLE = merge
[repository.signing]
DEFAULT_TRUST_MODEL = committer
[oauth2]
JWT_SECRET = 6XKGvhqiFK0oXo8wckWPZDS5_0BlO4dSATDXkh6BLlY
[federation]
ENABLED = true

View file

@ -5,7 +5,10 @@ services:
image: codeberg.org/forgejo/forgejo:1.20
container_name: forgejo
environment:
- USER_UID=1001
- FORGEJO__security__INSTALL_LOCK=true
- FORGEJO__federation__ENABLED=true
- FORGEJO__server__ROOT_URL=http://forgejo
- FORGEJO__server__HTTP_PORT=80
restart: always
networks:
- ftest
@ -13,7 +16,6 @@ services:
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
- ./conf/app.ini:/data/gitea/conf/app.ini:wo
ports:
- "7000:80"
- "2222:22"