refactor: restructure project to monorepo with apps directory
22
.github/workflows/release.yml
vendored
@@ -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
@@ -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/
|
||||||
|
|||||||
0
app/.gitignore → apps/app/.gitignore
vendored
@@ -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",
|
||||||
|
Before Width: | Height: | Size: 391 B After Width: | Height: | Size: 391 B |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 142 KiB After Width: | Height: | Size: 142 KiB |
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 147 KiB |
|
Before Width: | Height: | Size: 108 KiB After Width: | Height: | Size: 108 KiB |
|
Before Width: | Height: | Size: 262 KiB After Width: | Height: | Size: 262 KiB |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 128 B After Width: | Height: | Size: 128 B |
|
Before Width: | Height: | Size: 385 B After Width: | Height: | Size: 385 B |
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |