Skip to content

Commit

Permalink
Add iOS build (#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeharding authored Jul 26, 2023
1 parent 701790d commit 3c69120
Show file tree
Hide file tree
Showing 50 changed files with 1,438 additions and 71 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ yarn-error.log*

# Optional eslint cache
.eslintcache

vite.config.ts.timestamp-*
4 changes: 3 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
dist/
pnpm-lock.yaml
pnpm-lock.yaml
ios/
vite.config.ts.timestamp-*
9 changes: 9 additions & 0 deletions appflow.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"apps": [
{
"appId": "app.vger.voyager",
"dependencyInstallCommand": "corepack enable && pnpm i",
"webBuildCommand": "pnpm build"
}
]
}
17 changes: 17 additions & 0 deletions capacitor.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { CapacitorConfig } from "@capacitor/cli";

const config: CapacitorConfig = {
appId: "io.ionic.starter",
appName: "Voyager",
webDir: "dist",
server: {
androidScheme: "https",
},
plugins: {
CapacitorHttp: {
enabled: true,
},
},
};

export default config;
7 changes: 7 additions & 0 deletions ionic.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "Voyager",
"integrations": {
"capacitor": {}
},
"type": "react-vite"
}
13 changes: 13 additions & 0 deletions ios/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
App/build
App/Pods
App/output
App/App/public
DerivedData
xcuserdata

# Cordova plugins for Capacitor
capacitor-cordova-ios-plugins

# Generated Config files
App/App/capacitor.config.json
App/App/config.xml
Loading

0 comments on commit 3c69120

Please sign in to comment.