Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
a01c2df
Add kustomize manifests for backend-services deployment
kmandryk Nov 18, 2025
d5923b8
Remove backend-services OpenShift kustomize configs
kmandryk Nov 18, 2025
fbbf521
test separation with cache
dbarkowsky Nov 21, 2025
692417b
adjust path
dbarkowsky Nov 21, 2025
33c3e6f
specify working directory
dbarkowsky Nov 21, 2025
44629bb
make sure we're installing backend npm packages
dbarkowsky Nov 21, 2025
a8249c6
try built-in cach option
dbarkowsky Nov 21, 2025
367ead7
action for caching
dbarkowsky Nov 21, 2025
1055a7f
all dependencies, not just prod ones
dbarkowsky Nov 21, 2025
182bd54
remove prisma generate step.
dbarkowsky Nov 21, 2025
72078af
pass with no tests
dbarkowsky Nov 21, 2025
1544b58
do we need to install deps a second time with cache?
dbarkowsky Nov 21, 2025
7d90030
update lint script and precommit
dbarkowsky Nov 21, 2025
32bb131
add lint job
dbarkowsky Nov 21, 2025
14cf47c
frontend linting as well
dbarkowsky Nov 21, 2025
edf73a7
fix endlines
dbarkowsky Nov 21, 2025
b714a68
Merge pull request #9 from bcgov/AI-489
dbarkowsky Nov 24, 2025
32c1850
add codeowners
dbarkowsky Nov 21, 2025
be737e8
PR template
dbarkowsky Nov 21, 2025
2984692
add apache license
dbarkowsky Nov 21, 2025
b02111e
AI-426 OCR Service (#8)
dbarkowsky Nov 24, 2025
88232a8
Merge branch 'develop' of https://github.com/bcgov/ai-adoption-docume…
kmandryk Nov 24, 2025
da3d295
remove builds for all PRs. Only build for merge to develop and main
kmandryk Nov 24, 2025
a01f811
Mantine UI and standard auth (#7)
alex-struk Nov 25, 2025
93d009b
front end with upload functionality and backend with simple queue system
alex-struk Nov 25, 2025
e770834
formatting
alex-struk Nov 25, 2025
685976b
bounding box overlay
alex-struk Nov 26, 2025
d407f3a
Merge branch 'main' into AI-429
kmandryk Jan 6, 2026
3ffd1fd
Add frontend Docker setup and OpenShift manifests
kmandryk Jan 6, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
module.exports = {
root: true,
extends: ['custom'],
ignorePatterns: [
'node_modules',
'dist',
'build',
'**/.eslintrc.js', // Ignore ESLint config files (they use CommonJS)
'**/jest.config.js',
'**/webpack.config.js',
'**/rollup.config.js',
'**/vite.config.js',
'**/tailwind.config.js',
'**/next.config.js',
]
};

module.exports = {
root: true,
extends: ['custom'],
ignorePatterns: [
'node_modules',
'dist',
'build',
'**/.eslintrc.js', // Ignore ESLint config files (they use CommonJS)
'**/jest.config.js',
'**/webpack.config.js',
'**/rollup.config.js',
'**/vite.config.js',
'**/tailwind.config.js',
'**/next.config.js',
]
};
Loading
Loading