-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcopier.yaml
More file actions
42 lines (35 loc) · 903 Bytes
/
copier.yaml
File metadata and controls
42 lines (35 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
_subdirectory: "templates/"
project_name:
type: str
help: Project name
default: pytauri-app
package_name:
type: str
default: "{{ project_name | replace('-', '_')}}"
when: false
identifier:
type: str
help: Identifier
default: "com.username.{{ project_name }}"
template:
type: str
help: Choose your UI template
choices:
Vue: vue
React: react
Svelte: svelte
default: vue
_message_after_copy: |
Template created! To get started run:
cd {{ project_name }}
pnpm install
uv venv --python-preference only-system
{%- if _copier_conf.os == "windows" %}
.venv\Scripts\activate
{%- else %}
source .venv/bin/activate
{%- endif %}
uv sync
For Desktop development, run:
pnpm tauri dev
For building a standalone app, see the `scripts/` folder.