Skip to content

Commit c688ce9

Browse files
Merge pull request #278 from domicileapp/next
base
2 parents f4ad8ba + be83087 commit c688ce9

File tree

343 files changed

+20700
-33585
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

343 files changed

+20700
-33585
lines changed

.air.toml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
root = "."
2+
testdata_dir = "testdata"
3+
tmp_dir = "tmp"
4+
5+
[build]
6+
args_bin = []
7+
bin = "./tmp/main"
8+
cmd = "go build -o ./tmp/main ."
9+
delay = 0
10+
exclude_dir = ["assets", "tmp", "vendor", "testdata", "node_modules", "web"]
11+
exclude_file = []
12+
exclude_regex = ["_test.go", ".js", ".ts"]
13+
exclude_unchanged = false
14+
follow_symlink = false
15+
full_bin = ""
16+
include_dir = []
17+
include_ext = ["go", "tpl", "tmpl", "html"]
18+
include_file = []
19+
kill_delay = "0s"
20+
log = "build-errors.log"
21+
rerun = false
22+
rerun_delay = 500
23+
send_interrupt = false
24+
stop_on_error = false
25+
26+
[color]
27+
app = ""
28+
build = "yellow"
29+
main = "magenta"
30+
runner = "green"
31+
watcher = "cyan"
32+
33+
[log]
34+
main_only = false
35+
time = false
36+
37+
[misc]
38+
clean_on_exit = false
39+
40+
[screen]
41+
clear_on_rebuild = false
42+
keep_scroll = true

.editorconfig

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ indent_size = 2
88
insert_final_newline = true
99
trim_trailing_whitespace = true
1010

11-
[*.bazel]
12-
indent_style = space
11+
[*.py]
12+
indent_size = 4
13+
14+
[*.{go,mod,work}]
1315
indent_size = 4
1416

1517
[*.md]
File renamed without changes.

.github/dependabot.yml

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2
22
updates:
33
- package-ecosystem: 'npm'
4-
target-branch: 'dev'
4+
target-branch: 'next'
55
directory: '/'
66
schedule:
77
interval: 'daily'
@@ -10,3 +10,26 @@ updates:
1010
prefix: chore
1111
labels:
1212
- 'category/deps'
13+
- 'type/npm'
14+
- package-ecosystem: 'pip'
15+
target-branch: 'next'
16+
directory: '/'
17+
schedule:
18+
interval: 'daily'
19+
commit-message:
20+
include: scope
21+
prefix: chore
22+
labels:
23+
- 'category/deps'
24+
- 'type/python'
25+
- package-ecosystem: 'gomod'
26+
target-branch: 'next'
27+
directory: '/'
28+
schedule:
29+
interval: 'daily'
30+
commit-message:
31+
include: scope
32+
prefix: chore
33+
labels:
34+
- 'category/deps'
35+
- 'type/go'

.github/labeler.yml

-12
This file was deleted.

.github/labels.yml

-52
This file was deleted.

.github/workflows/docs-release.yml

-35
This file was deleted.

.github/workflows/docs.yml

-52
This file was deleted.

.github/workflows/github.yml

-29
This file was deleted.

.github/workflows/lint.yml

-23
This file was deleted.

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
push:
44
branches:
55
- main
6-
- dev
6+
- next
77
workflow_dispatch:
88
jobs:
99
release:
@@ -20,7 +20,7 @@ jobs:
2020
node-version: 'lts/*'
2121

2222
- name: Install dependencies
23-
run: yarn workspace domicile install
23+
run: yarn install
2424

2525
- name: Release
2626
env:

0 commit comments

Comments
 (0)