Skip to content

Commit 821d6a4

Browse files
authored
ScriptBee v2 preparation (#17)
* docs: define ScriptBee v2 architecture * build: dotnet 9 upgrade * build: angular 19 upgrade * feat: start code preparation for processing instances
1 parent a37a747 commit 821d6a4

File tree

638 files changed

+20416
-45099
lines changed

Some content is hidden

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

638 files changed

+20416
-45099
lines changed

.config/dotnet-tools.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {
5+
"csharpier": {
6+
"version": "0.30.6",
7+
"commands": [
8+
"dotnet-csharpier"
9+
],
10+
"rollForward": false
11+
}
12+
}
13+
}

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
**/charts
1717
**/docker-compose*
1818
**/Dockerfile*
19+
**/*.Dockerfile
1920
**/npm-debug.log
2021
**/obj
2122
**/secrets.dev.yaml

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[*.{cs,csx}]
2+
charset = utf-8
3+
insert_final_newline = true
4+
trim_trailing_whitespace = true
5+
dotnet_sort_system_directives_first = true
6+
dotnet_separate_import_directive_groups = false
7+
indent_style = space
8+
indent_size = 4
9+
max_line_length = 100

.github/workflows/build-and-test.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Build and Test
22

33
on:
44
push:
5+
branches:
6+
- master
57
pull_request:
68

79
jobs:
@@ -10,11 +12,11 @@ jobs:
1012
runs-on: ubuntu-latest
1113

1214
steps:
13-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1416
- name: Setup .NET
15-
uses: actions/setup-dotnet@v1
17+
uses: actions/setup-dotnet@v4
1618
with:
17-
dotnet-version: 6.0.x
19+
dotnet-version: 9.0.x
1820
- name: Restore dependencies
1921
run: dotnet restore
2022
- name: Build

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: Build Docker Image
1919
run: |
2020
docker build -t dxworks/scriptbee:${{ github.event.inputs.version }} -f ./Dockerfile .

.github/workflows/release-docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Deploy Docs
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- uses: actions/setup-python@v4
1515
with:
1616
python-version: 3.x

0 commit comments

Comments
 (0)