mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-09 16:55:16 +00:00
Split default gitpod view to include all tasks (#22555)
It was showing only the `docs` process Signed-off-by: Yarden Shoham <hrsi88@gmail.com>
This commit is contained in:
parent
46d024428f
commit
f417157bdd
10
.gitpod.yml
10
.gitpod.yml
|
@ -7,10 +7,6 @@ tasks:
|
||||||
command: |
|
command: |
|
||||||
gp sync-done setup
|
gp sync-done setup
|
||||||
exit 0
|
exit 0
|
||||||
- name: Run frontend
|
|
||||||
command: |
|
|
||||||
gp sync-await setup
|
|
||||||
make watch-frontend
|
|
||||||
- name: Run backend
|
- name: Run backend
|
||||||
command: |
|
command: |
|
||||||
gp sync-await setup
|
gp sync-await setup
|
||||||
|
@ -19,9 +15,15 @@ tasks:
|
||||||
echo -e "\n[database]\nDB_TYPE = sqlite3\nPATH = $GITPOD_REPO_ROOT/data/gitea.db" >> custom/conf/app.ini
|
echo -e "\n[database]\nDB_TYPE = sqlite3\nPATH = $GITPOD_REPO_ROOT/data/gitea.db" >> custom/conf/app.ini
|
||||||
export TAGS="sqlite sqlite_unlock_notify"
|
export TAGS="sqlite sqlite_unlock_notify"
|
||||||
make watch-backend
|
make watch-backend
|
||||||
|
- name: Run frontend
|
||||||
|
command: |
|
||||||
|
gp sync-await setup
|
||||||
|
make watch-frontend
|
||||||
|
openMode: split-right
|
||||||
- name: Run docs
|
- name: Run docs
|
||||||
before: sudo bash -c "$(grep 'https://github.com/gohugoio/hugo/releases/download' Makefile | tr -d '\')" # install hugo
|
before: sudo bash -c "$(grep 'https://github.com/gohugoio/hugo/releases/download' Makefile | tr -d '\')" # install hugo
|
||||||
command: cd docs && make clean update && hugo server -D -F --baseUrl $(gp url 1313) --liveReloadPort=443 --appendPort=false --bind=0.0.0.0
|
command: cd docs && make clean update && hugo server -D -F --baseUrl $(gp url 1313) --liveReloadPort=443 --appendPort=false --bind=0.0.0.0
|
||||||
|
openMode: split-right
|
||||||
|
|
||||||
vscode:
|
vscode:
|
||||||
extensions:
|
extensions:
|
||||||
|
|
Loading…
Reference in a new issue