mirror of
https://github.com/skoelle/focusapp.git
synced 2026-09-17 20:10:25 +00:00
cleanup 3
This commit is contained in:
@@ -66,11 +66,6 @@ jobs:
|
||||
|
||||
# Alle Versions-IDs abrufen, sortiert nach Erstellungsdatum (neueste zuerst)
|
||||
VERSION_IDS=$(gh api \
|
||||
-H "Accept: application/vnd.github+json" \
|
||||
"/user/packages/maven/$PACKAGE_NAME/versions" \
|
||||
--paginate \
|
||||
-q 'sort_by(.created_at) | reverse | .[].id' 2>/dev/null || \
|
||||
gh api \
|
||||
-H "Accept: application/vnd.github+json" \
|
||||
"/user/packages/container/$PACKAGE_NAME/versions" \
|
||||
--paginate \
|
||||
|
||||
@@ -12,12 +12,7 @@
|
||||
<EmbeddedResource Remove="client\node_modules\**" />
|
||||
<None Remove="client\node_modules\**" />
|
||||
|
||||
<!-- Auch Build/Dist ausschließen -->
|
||||
<Compile Remove="client\build\**" />
|
||||
<Content Remove="client\build\**" />
|
||||
<None Remove="client\build\**" />
|
||||
|
||||
<Compile Remove="client\dist\**" />
|
||||
<!-- Auch Dist ausschließen -->
|
||||
<Content Remove="client\dist\**" />
|
||||
<None Remove="client\dist\**" />
|
||||
</ItemGroup>
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
REACT_APP_API_URL=http://localhost:5000
|
||||
+1
-2
@@ -21,6 +21,5 @@
|
||||
"dev": "vite",
|
||||
"build": "tsc && vite build",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"proxy": "http://localhost:5000"
|
||||
}
|
||||
}
|
||||
|
||||
-11
@@ -7,14 +7,3 @@ CREATE USER IF NOT EXISTS 'focusapp'@'%' IDENTIFIED BY 'change-password';
|
||||
GRANT ALL PRIVILEGES ON focusapp.* TO 'focusapp'@'%';
|
||||
|
||||
FLUSH PRIVILEGES;
|
||||
|
||||
USE focusapp;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS FocusTasks (
|
||||
Id INT AUTO_INCREMENT PRIMARY KEY,
|
||||
Title VARCHAR(255) NOT NULL,
|
||||
Description VARCHAR(2000) NULL,
|
||||
`Order` INT NOT NULL,
|
||||
CreatedAt DATETIME NOT NULL,
|
||||
UpdatedAt DATETIME NOT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
Reference in New Issue
Block a user