aboutsummaryrefslogtreecommitdiff
path: root/.gitpod.yml
AgeCommit message (Collapse)Author
2023-02-28Write Gitpod `app.ini` only once (#23192)Yarden Shoham
Before this change, the `app.ini` would get overwritten on each workspace start, confusing Gitea. It asked for reinstallation each time. This makes sure the file is written only once by checking it does not exist before creating it. --- [Review without whitespace diff](https://github.com/go-gitea/gitea/pull/23192/files?w=1) --------- Co-authored-by: delvh <dev.lh@web.de>
2023-01-20Split default gitpod view to include all tasks (#22555)Yarden Shoham
It was showing only the `docs` process Signed-off-by: Yarden Shoham <hrsi88@gmail.com>
2022-10-24Add sqlite vscode extension to Gitpod configuration (#21552)Yarden Shoham
It allows for quick database inspections in the IDE. ![image](https://user-images.githubusercontent.com/20454870/197355299-222f5027-aba8-4fe2-b1d4-fff93d5ccb3c.png) Signed-off-by: Yarden Shoham <hrsi88@gmail.com>
2022-10-24Use recommended vscode configuration in gitpod environments (#21537)Yarden Shoham
To make go tests run in gitpod, the vscode settings.json must be in the correct place in the filesystem Signed-off-by: Yarden Shoham <hrsi88@gmail.com>
2022-10-14Add vitest tests to Gitpod (#21449)Yarden Shoham
The vitest PR is merged, we can now add vitest to Gitpod's testing pane * #21444 We couldn't use jest in the same manner because we had to customize `NODE_OPTIONS`. Screenshot (look at all the cool stuff circled in red): ![image](https://user-images.githubusercontent.com/20454870/195728971-9a2eaa80-8d91-4e4f-899b-a068edb9ff30.png) Signed-off-by: Yarden Shoham <hrsi88@gmail.com>
2022-10-12Refactor Gitpod configuration to improve quick spin up of automated dev ↵Yarden Shoham
environments (#21411) This commit instructs Gitpod to run `docs` in watch mode in fresh development environments so any dev could start hacking in seconds. Also included some vscode extensions for Vue, Go, and Docker. Try it here: [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/yardenshoham/gitea/tree/gitpod) Signed-off-by: Yarden Shoham <hrsi88@gmail.com> Co-authored-by: Gusted <williamzijl7@hotmail.com>
2022-10-11add gitpod config (#20995)Anbraten
Add a config for <https://www.gitpod.io/>. This allows users to easily run an online IDE pre-configured to develop and test Gitea by opening <https://gitpod.io/#https://github.com/go-gitea/gitea>. [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/go-gitea/gitea) Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: techknowlogick <techknowlogick@gitea.io>