Compare commits

..

6 Commits

Author SHA1 Message Date
Flatlogic Bot
e54b0ada1c reboot 2025-09-05 21:24:07 +00:00
lora322
268a2aff13
Merge pull request #1 from lora322/ai-dev
new app work
2025-09-01 23:57:50 -04:00
lora322
bf240e9cc0
new app work 2025-09-02 03:54:58 +00:00
lora322
7635f757e0
Describe your changes 2025-08-30 19:39:10 +00:00
lora322
8eaaa63df0
Update styleSlice.ts
changed theme from Pastel Emerald Green to white
2025-08-30 13:45:51 -04:00
Flatlogic Bot
338932751b Forced merge: merge ai-dev into master 2025-08-27 05:58:22 +00:00
9 changed files with 67 additions and 42 deletions

View File

@ -0,0 +1,5 @@
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"remoteUser": "codespace",
"overrideCommand": false
}

File diff suppressed because one or more lines are too long

View File

@ -766,6 +766,13 @@ chokidar@^3.2.2:
optionalDependencies:
fsevents "~2.3.2"
chokidar@^4.0.3:
version "4.0.3"
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-4.0.3.tgz#7be37a4c03c9aee1ecfe862a4a23b2c70c205d30"
integrity sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==
dependencies:
readdirp "^4.0.1"
chownr@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"
@ -3395,6 +3402,11 @@ readable-stream@^4.2.0:
process "^0.11.10"
string_decoder "^1.3.0"
readdirp@^4.0.1:
version "4.1.2"
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-4.1.2.tgz#eb85801435fbf2a7ee58f19e0921b068fc69948d"
integrity sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==
readdirp@~3.4.0:
version "3.4.0"
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.4.0.tgz#9fdccdf9e9155805449221ac645e8303ab5b9ada"

View File

@ -15,11 +15,6 @@ services:
max-size: "10m"
max-file: "3"
db:
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
image: postgres
volumes:
- ./data/db:/var/lib/postgresql/data
@ -33,13 +28,11 @@ services:
options:
max-size: "10m"
max-file: "3"
backend:
image: backend
build: ../backend
volumes:
- ./wait-for-it.sh:/usr/src/app/wait-for-it.sh
- ./start-backend.sh:/usr/src/app/start-backend.sh
build: ../backend
environment:
- DB_HOST=db
ports:
@ -50,7 +43,5 @@ services:
max-size: "10m"
max-file: "3"
depends_on:
- "db"
command: ["bash", "./wait-for-it.sh", "db:5432", "--timeout=0", "--strict", "--", "bash", "./start-backend.sh"]
- db
command: ["bash", "./wait-for-it.sh", "db:5432", "--timeout=0", "--strict", "--", "bash", "./start-

0
docker/start-backend.sh Normal file → Executable file
View File

0
docker/wait-for-it.sh Normal file → Executable file
View File

View File

@ -31,31 +31,31 @@ interface StyleState {
}
const initialState: StyleState = {
asideStyle: styles.pastelEmeraldTheme.aside,
asideStyle: styles.white.aside,
asideScrollbarsStyle: styles.white.asideScrollbars,
asideBrandStyle: styles.white.asideBrand,
asideMenuItemStyle: styles.pastelEmeraldTheme.asideMenuItem,
asideMenuItemActiveStyle: styles.pastelEmeraldTheme.asideMenuItemActive,
activeLinkColor: styles.pastelEmeraldTheme.activeLinkColor,
asideMenuItemStyle: styles.white.asideMenuItem,
asideMenuItemActiveStyle: styles.white.asideMenuItemActive,
activeLinkColor: styles.white.activeLinkColor,
asideMenuDropdownStyle: styles.white.asideMenuDropdown,
navBarItemLabelStyle: styles.pastelEmeraldTheme.navBarItemLabel,
navBarItemLabelHoverStyle: styles.pastelEmeraldTheme.navBarItemLabelHover,
navBarItemLabelStyle: styles.white.navBarItemLabel,
navBarItemLabelHoverStyle: styles.white.navBarItemLabelHover,
navBarItemLabelActiveColorStyle:
styles.pastelEmeraldTheme.navBarItemLabelActiveColor,
overlayStyle: styles.pastelEmeraldTheme.overlay,
styles.white.navBarItemLabelActiveColor,
overlayStyle: styles.white.overlay,
darkMode: false,
bgLayoutColor: styles.pastelEmeraldTheme.bgLayoutColor,
iconsColor: styles.pastelEmeraldTheme.iconsColor,
cardsColor: styles.pastelEmeraldTheme.cardsColor,
focusRingColor: styles.pastelEmeraldTheme.focusRingColor,
corners: styles.pastelEmeraldTheme.corners,
cardsStyle: styles.pastelEmeraldTheme.cardsStyle,
linkColor: styles.pastelEmeraldTheme.linkColor,
websiteHeder: styles.pastelEmeraldTheme.websiteHeder,
borders: styles.pastelEmeraldTheme.borders,
shadow: styles.pastelEmeraldTheme.shadow,
websiteSectionStyle: styles.pastelEmeraldTheme.websiteSectionStyle,
textSecondary: styles.pastelEmeraldTheme.textSecondary,
bgLayoutColor: styles.white.bgLayoutColor,
iconsColor: styles.white.iconsColor,
cardsColor: styles.white.cardsColor,
focusRingColor: styles.white.focusRingColor,
corners: styles.white.corners,
cardsStyle: styles.white.cardsStyle,
linkColor: styles.white.linkColor,
websiteHeder: styles.white.websiteHeder,
borders: styles.white.borders,
shadow: styles.white.shadow,
websiteSectionStyle: styles.white.websiteSectionStyle,
textSecondary: styles.white.textSecondary,
};
export const styleSlice = createSlice({

12
package-lock.json generated Normal file
View File

@ -0,0 +1,12 @@
{
"name": "app",
"version": "0.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "app",
"version": "0.0.0"
}
}
}

4
yarn.lock Normal file
View File

@ -0,0 +1,4 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1