Files
archived-tauri-docs/docs/usage/development/development.md
Laegel 855cc1ce37 Feat/recipes (#51)
* feat(components)

* feat(docs): WIP recipes

* fix: SSR fix

* fix(docs): Changed Rust paths in 'see more'

* feat(docs): Added development section

* feat(docs): Added development instructions

* feat(docs): Added debug instructions

* feat(docs): Added publishing and a sequence hint in sidebar

* chore(cleanFiles): Removed reworked files

* fix: Restored codeblock title

* fix: Added codeblock title

* feat(docs): Added bundler section

* fix: Changed 'npm run' for 'npx'

* fix(docs): Added missing --save-dev

* fix: Now using alert component & fixed some types

* fix: Changed --save-dev for --save

* chore: Moved 'development' files

* fix: Changed relative for absolute links

* fix(docs): Various minor modifications applied

* fix(wording)

* fix(wording)
2020-05-29 12:12:59 +02:00

1.2 KiB

title, sidebar_label
title sidebar_label
App Development App Development (2/4)

import Alert from '@theme/Alert' import Command from '@theme/Command'

1. Start Your Devserver

Now that you have everything setup, you should start your application development server provided by your UI framework or bundler (assuming you're using one, of course).

Every framework has its own development tooling. It is outside of the scope of this document to treat them all or keep them up to date.

2. Start Tauri Development Window

The first time you run this command, it will take several minutes for the Rust package manager to download and build all the required packages. Since they are cached, subsequent builds will be much faster, as only the Tauri components will need rebuilding.

You are now ready to develop your application with your Tauri window!

In your project repository, you SHOULD commit the "src-tauri/Cargo.toml" to git because you want it to be deterministic. You SHOULD NOT commit the "src-tauri/target" folder or any of its contents.