Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions apps/mobile/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
df/
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
7 changes: 7 additions & 0 deletions apps/mobile/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Tauri + React + Typescript

This template should help get you started developing with Tauri, React and Typescript in Vite.

## Recommended IDE Setup

- [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)
350 changes: 350 additions & 0 deletions apps/mobile/bun.lock

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions apps/mobile/devup.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"theme": {
"colors": {
"default": {
"bg": "#F2F2F2",
"surface": "#FFFFFF",
"text": "#1A1A1A",
"textMuted": "#6B6B6B",
"textSubtle": "#9A9A9A",
"border": "#E5E5E5",
"primary": "#1A1A1A",
"primaryText": "#FFFFFF",
"danger": "#E03E5C",
"dangerSoft": "#FDECEF",
"dangerSoftBorder": "#F5B8C1",
"accent": "#3FB6A8",
"star": "#F5C518",
"tabBar": "#2A2A2A"
}
}
}
}
15 changes: 15 additions & 0 deletions apps/mobile/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover"
/>
<title>Braillify</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
36 changes: 36 additions & 0 deletions apps/mobile/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"name": "mobile",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"check": "tsc && cargo check --manifest-path src-tauri/Cargo.toml",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"ios:dev": "tauri ios dev",
"ios:run": "tauri ios run",
"ios:build": "tauri ios build",
"tauri": "tauri"
},
"dependencies": {
"@devup-ui/components": "^0.1.45",
"@devup-ui/react": "^1.0.36",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-clipboard-manager": "^2",
"braillify": "workspace:*",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@devup-ui/vite-plugin": "^1.0.59",
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vite-plugin-top-level-await": "^1.6.0",
"vite-plugin-wasm": "^3.6.0"
}
}
7 changes: 7 additions & 0 deletions apps/mobile/src-tauri/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Generated by Cargo
# will have compiled files and executables
/target/

# Generated by Tauri
# will have schema files for capabilities auto-completion
/gen/schemas
Loading
Loading