mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
518d384346
I couldn't find a way to build the docs without `trans-copy` and spinning up a dev environment that generates files untracked by git on startup is not a good development experience Signed-off-by: Yarden Shoham <git@yardenshoham.com>
42 lines
1019 B
YAML
42 lines
1019 B
YAML
tasks:
|
|
- name: Setup
|
|
init: |
|
|
cp -r contrib/ide/vscode .vscode
|
|
make deps
|
|
make build
|
|
command: |
|
|
gp sync-done setup
|
|
exit 0
|
|
- name: Run backend
|
|
command: |
|
|
gp sync-await setup
|
|
if [ ! -f custom/conf/app.ini ]
|
|
then
|
|
mkdir -p custom/conf/
|
|
echo -e "[server]\nROOT_URL=$(gp url 3000)/" > custom/conf/app.ini
|
|
echo -e "\n[database]\nDB_TYPE = sqlite3\nPATH = $GITPOD_REPO_ROOT/data/gitea.db" >> custom/conf/app.ini
|
|
fi
|
|
export TAGS="sqlite sqlite_unlock_notify"
|
|
make watch-backend
|
|
- name: Run frontend
|
|
command: |
|
|
gp sync-await setup
|
|
make watch-frontend
|
|
openMode: split-right
|
|
|
|
vscode:
|
|
extensions:
|
|
- editorconfig.editorconfig
|
|
- dbaeumer.vscode-eslint
|
|
- golang.go
|
|
- stylelint.vscode-stylelint
|
|
- DavidAnson.vscode-markdownlint
|
|
- johnsoncodehk.volar
|
|
- ms-azuretools.vscode-docker
|
|
- zixuanchen.vitest-explorer
|
|
- alexcvzz.vscode-sqlite
|
|
|
|
ports:
|
|
- name: Gitea
|
|
port: 3000
|