Skip to content

Commit

Permalink
First data coming from DB
Browse files Browse the repository at this point in the history
  • Loading branch information
andyslack committed Aug 29, 2024
1 parent c114e55 commit 1fabca4
Show file tree
Hide file tree
Showing 97 changed files with 13,147 additions and 3,690 deletions.
Binary file modified .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .docker/setup.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE DATABASE IF NOT EXISTS llana;
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.dockerignore
node_modules
npm-debug.log
dist
31 changes: 24 additions & 7 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,25 @@
module.exports = {
extends: '../.eslintrc.js',
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir: __dirname,
sourceType: 'module',
},
}
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir: __dirname,
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
],
root: true,
env: {
node: true,
jest: true,
},
ignorePatterns: ['.eslintrc.js'],
rules: {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
};
Loading

0 comments on commit 1fabca4

Please sign in to comment.