Scott Idem e793db8d3b feat: Initialize branch for AI-driven development
This commit introduces the initial setup for the `ae_app_3x_llm` branch.
The purpose of this branch is to explore and implement more direct
collaboration with AI Large Language Models (LLMs) for complex code
changes, including the creation of new function libraries and the
modification of existing code.

This initial commit includes:
- GEMINI.md: A file to provide context to the AI about the project.
- TODO.md: A to-do list for upcoming development tasks, created in
  collaboration with the AI.
2025-11-04 21:59:33 -05:00
2025-11-03 18:04:47 -05:00
2025-11-03 17:51:48 -05:00
2024-03-08 00:09:17 -05:00
2025-10-17 16:22:23 -04:00
2025-05-13 17:54:23 -04:00
2025-07-11 16:43:03 -04:00

One Sky IT's Aether App - SvelteKit v2

This uses SvelteKit version 2.x with Svelte version 5.x, TailwindCSS 4.1, and Skelton.

Current Modules

AE Events - Speakers (/events_speakers)

Components

  • +page.svelte - The main page for the Events - Speakers module
  • 10_edit_modal__event_presenter_obj.svelte - The modal for editing a presenter
  • 10_list__event_presenter_obj.svelte - The list of presenters/speakers
  • 10_view_modal__event_presenter_obj.svelte - The modal for viewing a presenter

Path [slug]

  • +page.svelte - The main page for the presenter ID [slug]

AE Sponsorships (/sponsorships)

  • +page.svelte - The main page for the Sponsorships module
  • 10_edit_modal__sponsorship_obj.svelte - The modal for editing a sponsorship
  • 10_list__sponsorship_obj.svelte - The list of sponsorships
  • 10_view_modal__sponsorship_obj.svelte - The modal for viewing a sponsorship

Path [slug]

  • +page.svelte - The main page for the sponsorship ID [slug]

Future Modules

AE Events - Badges (/events_badges)

  • +page.svelte - The main page for the Events - Badges module
  • 10_list__event_badge_obj.svelte - The list of badges
  • 10_view_modal__event_badge_obj.svelte - The modal for viewing a badge

AE Events - Exhibit Leads (/events_exhibit_leads)

AE Events - Presentation Management (/events_pres_mgmt)

How to build and deploy SvelteKit:

Copy the contents of the "build" directory to ./npm_deploy/build/

npm run build

If this is just a quick build update then only the build directory needs to be copied (rsync).

rsync -vhrz --exclude 'node_modules' ~/OSIT_dev/ae_app_svelte_tailwind_skeleton/build/ ~/OSIT_dev/ae_env_node_app/npm_deploy/build/ --delete

rsync -vhrz ~/OSIT_dev/ae_env_node_app/npm_deploy/build/ scott@linode.oneskyit.com:/srv/env/prod_aether_sveltekit/npm_deploy/build/ --delete

If this includes package updates (not development) we need to copy the new package.json. Manually copy the new package.json file to ./npm_deploy/. This also needs to be copied to the server. Copy the package.json even though not really used.

Run the --omit dev to clear out the node_modules directory. Copy the root node_modules directory to ./npm_deploy/build/node_modules/ after running te omit dev command.

npm ci --omit dev

# copy/paste, rsync, or cp
rsync -vhrz ~/OSIT_dev/ae_app_svelte_tailwind_skeleton/node_modules ~/OSIT_dev/ae_env_node_app/npm_deploy/build/ --delete

# copy package.json as well

npm install

Everything should be ready to run on the development server and production server.

Rebuild the node_modules directory and manually install extra Svelte packages

Run the npm update to fix the node_modules directory and package.json

npm list
npm outdated
npm update
npm outdated
npm list

Other installs?: Are both still needed? I know at least one of these is. 2024-07-23

npm install --save-dev svelte-highlight
npm install --save-dev typescript-svelte-plugin

Set up and run

Packages and dependencies

npm install --save-dev svelte-highlight typescript-svelte-plugin
npm install flowbite flowbite-svelte tailwind-merge @popperjs/core

I am slowly switching from Font-Awesome to Lucide

Tiptap Editor

Need to install ShadCN and Lucide for the Tiptap editor.

npm install shadcn-svelte
npm install lucide-svelte
npm install mode-watcher

Now we initialize the ShadCN and ShadEditor packages. Follow the command line instructions.

npx shadcn-svelte@next init
npx shadcn-svelte@next add dropdown-menu button tooltip input popover separator
npx shadeditor init

More packages related to the Tiptap editor???

npm install @tiptap/extension-link @tiptap/extension-bullet-list @tiptap/extension-history @tiptap/extension-typography @tiptap/extension-underline

Build

Environment file

".env"

This is the default used if others are not found when when "npm run dev" or "npm run build" is run.

".env.local"

This is used when "npm run dev" is run. This is not used in the production build.

".env.production"

This is used when "npm run build" is run. This is not used in the development build.

".env:prod"

This is modified to allow for a staging environment and production environment built.

".env:staging"

This is modified to allow for a staging environment and production environment built.

Example Important Values when running in dev:

Note: Environment values need to be updated when our home IP address changes. Be sure to check the Aether Container Environment and Aether Node App (SvelteKit) Environment files for the correct IP address. The Node Docker environment needs to be updated here and in the .env file that Docker will read. This needs to be improved later...

DOCKER_AE_API_DEV_SERVER_EXTRA_HOST=dev-api.oneskyit.com:108.48.200.147

DOCKER_AE_API_SERVER_EXTRA_HOST=dev-api.oneskyit.com:108.48.200.147

PUBLIC_AE_API_SERVER=api.oneskyit.com
PUBLIC_AE_API_BAK_SERVER=bak-api.oneskyit.com

create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npm create svelte@latest

# create a new project in my-app
npm create svelte@latest my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.

Description
No description provided
Readme 83 MiB
Languages
Svelte 75.7%
JavaScript 12.1%
HTML 7.5%
TypeScript 2.5%
CSS 2.2%