refactor: restructure project to monorepo with apps directory

This commit is contained in:
Cody Seibert
2025-12-11 20:34:49 -05:00
parent 7cb5a6a4df
commit 1bb20e5070
164 changed files with 12215 additions and 14 deletions

View File

@@ -38,29 +38,29 @@ jobs:
with: with:
node-version: '20' node-version: '20'
cache: 'npm' cache: 'npm'
cache-dependency-path: app/package-lock.json cache-dependency-path: apps/app/package-lock.json
- name: Install dependencies - name: Install dependencies
working-directory: ./app working-directory: ./apps/app
run: npm ci run: npm ci
- name: Build Electron App (macOS) - name: Build Electron App (macOS)
if: matrix.os == 'macos-latest' if: matrix.os == 'macos-latest'
working-directory: ./app working-directory: ./apps/app
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run build:electron -- --mac --x64 --arm64 run: npm run build:electron -- --mac --x64 --arm64
- name: Build Electron App (Windows) - name: Build Electron App (Windows)
if: matrix.os == 'windows-latest' if: matrix.os == 'windows-latest'
working-directory: ./app working-directory: ./apps/app
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run build:electron -- --win --x64 run: npm run build:electron -- --win --x64
- name: Build Electron App (Linux) - name: Build Electron App (Linux)
if: matrix.os == 'ubuntu-latest' if: matrix.os == 'ubuntu-latest'
working-directory: ./app working-directory: ./apps/app
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run build:electron -- --linux --x64 run: npm run build:electron -- --linux --x64
@@ -70,12 +70,12 @@ jobs:
with: with:
tag_name: ${{ github.event.inputs.version || github.ref_name }} tag_name: ${{ github.event.inputs.version || github.ref_name }}
files: | files: |
app/dist/*.exe apps/app/dist/*.exe
app/dist/*.dmg apps/app/dist/*.dmg
app/dist/*.AppImage apps/app/dist/*.AppImage
app/dist/*.zip apps/app/dist/*.zip
app/dist/*.deb apps/app/dist/*.deb
app/dist/*.rpm apps/app/dist/*.rpm
draft: false draft: false
prerelease: false prerelease: false
env: env:

9
.gitignore vendored
View File

@@ -1,2 +1,9 @@
#added by trueheads > will remove once supercombo adds multi-os support #added by trueheads > will remove once supercombo adds multi-os support
launch.sh launch.sh
# Dependencies
node_modules/
# Build outputs
dist/
.next/

View File

@@ -1,5 +1,5 @@
{ {
"name": "automaker", "name": "@automaker/app",
"version": "0.1.0", "version": "0.1.0",
"description": "An autonomous AI development studio that helps you build software faster using AI-powered agents", "description": "An autonomous AI development studio that helps you build software faster using AI-powered agents",
"homepage": "https://github.com/AutoMaker-Org/automaker", "homepage": "https://github.com/AutoMaker-Org/automaker",

View File

Before

Width:  |  Height:  |  Size: 391 B

After

Width:  |  Height:  |  Size: 391 B

View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 142 KiB

After

Width:  |  Height:  |  Size: 142 KiB

View File

Before

Width:  |  Height:  |  Size: 147 KiB

After

Width:  |  Height:  |  Size: 147 KiB

View File

Before

Width:  |  Height:  |  Size: 108 KiB

After

Width:  |  Height:  |  Size: 108 KiB

View File

Before

Width:  |  Height:  |  Size: 262 KiB

After

Width:  |  Height:  |  Size: 262 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 128 B

After

Width:  |  Height:  |  Size: 128 B

View File

Before

Width:  |  Height:  |  Size: 385 B

After

Width:  |  Height:  |  Size: 385 B

View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

Some files were not shown because too many files have changed in this diff Show More