mirror of
https://github.com/IT4Change/gradido.git
synced 2026-04-06 01:25:28 +00:00
Merge pull request #3570 from gradido/fix_small_bugs
fix(other): removed phantom line, aligned env and compose
This commit is contained in:
commit
4222484d1e
1
.github/workflows/lint.yml
vendored
1
.github/workflows/lint.yml
vendored
@ -26,7 +26,6 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cd ./config-schema
|
cd ./config-schema
|
||||||
biome ci .
|
biome ci .
|
||||||
echo $?
|
|
||||||
echo "success=$([ $? -eq 0 ] && echo true || echo false)" >> $GITHUB_OUTPUT
|
echo "success=$([ $? -eq 0 ] && echo true || echo false)" >> $GITHUB_OUTPUT
|
||||||
- name: Lint - Shared
|
- name: Lint - Shared
|
||||||
id: shared
|
id: shared
|
||||||
|
|||||||
7
.gitignore
vendored
7
.gitignore
vendored
@ -7,14 +7,14 @@ vite.config.mjs.timestamp-*
|
|||||||
log4js-config*.json
|
log4js-config*.json
|
||||||
/node_modules/*
|
/node_modules/*
|
||||||
node_modules
|
node_modules
|
||||||
|
coverage
|
||||||
build
|
build
|
||||||
messages.pot
|
messages.pot
|
||||||
nbproject
|
nbproject
|
||||||
.metadata
|
.metadata
|
||||||
/out/*
|
/out/*
|
||||||
/.env
|
.env
|
||||||
package-lock.json
|
package-lock.json
|
||||||
/deployment/bare_metal/.env
|
|
||||||
/deployment/bare_metal/nginx/sites-available/gradido.conf
|
/deployment/bare_metal/nginx/sites-available/gradido.conf
|
||||||
/deployment/bare_metal/nginx/sites-available/update-page.conf
|
/deployment/bare_metal/nginx/sites-available/update-page.conf
|
||||||
/deployment/bare_metal/nginx/update-page/updating.html
|
/deployment/bare_metal/nginx/update-page/updating.html
|
||||||
@ -23,3 +23,6 @@ package-lock.json
|
|||||||
|
|
||||||
# Apple macOS folder attribute file
|
# Apple macOS folder attribute file
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
# emacs
|
||||||
|
*~
|
||||||
|
|||||||
14
admin/.gitignore
vendored
14
admin/.gitignore
vendored
@ -1,15 +1 @@
|
|||||||
node_modules/
|
|
||||||
build/
|
|
||||||
.cache/
|
|
||||||
.yarn/install-state.gz
|
|
||||||
|
|
||||||
/.env
|
|
||||||
/.env.bak
|
|
||||||
|
|
||||||
# coverage folder
|
|
||||||
coverage/
|
|
||||||
|
|
||||||
# emacs
|
|
||||||
*~
|
|
||||||
|
|
||||||
components.d.ts
|
components.d.ts
|
||||||
|
|||||||
10
backend/.gitignore
vendored
10
backend/.gitignore
vendored
@ -1,9 +1 @@
|
|||||||
/node_modules/
|
locales
|
||||||
/.env
|
|
||||||
/.env.bak
|
|
||||||
/build/
|
|
||||||
/locales/
|
|
||||||
package-json.lock
|
|
||||||
coverage
|
|
||||||
# emacs
|
|
||||||
*~
|
|
||||||
|
|||||||
14
config-schema/.gitignore
vendored
14
config-schema/.gitignore
vendored
@ -1,14 +0,0 @@
|
|||||||
node_modules/
|
|
||||||
build/
|
|
||||||
.cache/
|
|
||||||
.yarn/install-state.gz
|
|
||||||
|
|
||||||
/.env
|
|
||||||
/.env.bak
|
|
||||||
|
|
||||||
# coverage folder
|
|
||||||
coverage/
|
|
||||||
|
|
||||||
# emacs
|
|
||||||
*~
|
|
||||||
|
|
||||||
27
database/.gitignore
vendored
27
database/.gitignore
vendored
@ -1,27 +0,0 @@
|
|||||||
.DS_Store
|
|
||||||
node_modules/
|
|
||||||
build/
|
|
||||||
.cache/
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
test/unit/coverage
|
|
||||||
|
|
||||||
package-lock.json
|
|
||||||
/.env
|
|
||||||
/.env.bak
|
|
||||||
.env.development.local
|
|
||||||
.env.production.local
|
|
||||||
|
|
||||||
# Editor directories and files
|
|
||||||
.idea
|
|
||||||
*.suo
|
|
||||||
*.ntvs*
|
|
||||||
*.njsproj
|
|
||||||
*.sln
|
|
||||||
|
|
||||||
# coverage folder
|
|
||||||
|
|
||||||
coverage/
|
|
||||||
|
|
||||||
*~
|
|
||||||
@ -4,6 +4,8 @@ import { connectToDatabaseServer } from './prepare'
|
|||||||
import { MIGRATIONS_TABLE } from '../src/config/const'
|
import { MIGRATIONS_TABLE } from '../src/config/const'
|
||||||
|
|
||||||
export async function truncateTables(connection: Connection) {
|
export async function truncateTables(connection: Connection) {
|
||||||
|
const databaseName = CONFIG.DB_DATABASE
|
||||||
|
await connection.query(`USE \`${databaseName}\``)
|
||||||
const [tables] = await connection.query('SHOW TABLES')
|
const [tables] = await connection.query('SHOW TABLES')
|
||||||
const tableNames = (tables as any[]).map((table) => Object.values(table)[0])
|
const tableNames = (tables as any[]).map((table) => Object.values(table)[0])
|
||||||
|
|
||||||
|
|||||||
8
dht-node/.gitignore
vendored
8
dht-node/.gitignore
vendored
@ -1,8 +0,0 @@
|
|||||||
/node_modules/
|
|
||||||
/.env
|
|
||||||
/.env.bak
|
|
||||||
/build/
|
|
||||||
package-json.lock
|
|
||||||
coverage
|
|
||||||
# emacs
|
|
||||||
*~
|
|
||||||
@ -288,6 +288,7 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- backend
|
- backend
|
||||||
- frontend
|
- frontend
|
||||||
|
- admin
|
||||||
ports:
|
ports:
|
||||||
- 80:80
|
- 80:80
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
1
e2e-tests/.gitignore
vendored
1
e2e-tests/.gitignore
vendored
@ -1,4 +1,3 @@
|
|||||||
node_modules/
|
|
||||||
cypress/screenshots/
|
cypress/screenshots/
|
||||||
cypress/videos/
|
cypress/videos/
|
||||||
cypress/reports/
|
cypress/reports/
|
||||||
|
|||||||
8
federation/.gitignore
vendored
8
federation/.gitignore
vendored
@ -1,8 +0,0 @@
|
|||||||
/node_modules/
|
|
||||||
/.env
|
|
||||||
/.env.bak
|
|
||||||
/build/
|
|
||||||
package-json.lock
|
|
||||||
coverage
|
|
||||||
# emacs
|
|
||||||
*~
|
|
||||||
29
frontend/.gitignore
vendored
29
frontend/.gitignore
vendored
@ -1,32 +1,3 @@
|
|||||||
.DS_Store
|
|
||||||
node_modules/
|
|
||||||
build/
|
|
||||||
src/assets/css/gradido.css
|
src/assets/css/gradido.css
|
||||||
src/assets/css/gradido.css.map
|
src/assets/css/gradido.css.map
|
||||||
.cache/
|
|
||||||
.yarn/install-state.gz
|
|
||||||
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
|
|
||||||
package-lock.json
|
|
||||||
/.env
|
|
||||||
/.env.bak
|
|
||||||
.env.development.local
|
|
||||||
.env.production.local
|
|
||||||
|
|
||||||
# Editor directories and files
|
|
||||||
.idea
|
|
||||||
*.suo
|
|
||||||
*.ntvs*
|
|
||||||
*.njsproj
|
|
||||||
*.sln
|
|
||||||
|
|
||||||
# coverage folder
|
|
||||||
|
|
||||||
coverage/
|
|
||||||
|
|
||||||
*~
|
|
||||||
|
|
||||||
components.d.ts
|
components.d.ts
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user