create-gpui-app

Crates.iocreate-gpui-app
lib.rscreate-gpui-app
version0.1.1
sourcesrc
created_at2024-05-21 13:31:09.612856
updated_at2024-05-21 13:41:37.573286
descriptionA CLI tool to create a new gpui app.
homepage
repositoryhttps://github.com/zed-industries/create-gpui-app
max_upload_size
id1246841
size14,968
Nate Butler (iamnbutler)

documentation

README

Create GPUI App

Create a new GPUI app in a single command.

GPUI is a fast, productive UI framework for Rust from the creators of Zed.

Quick Start

cargo install create-gpui-app
create-gpui-app --name my-app
cd my-app

Creating an App

You'll need to have Rust and Cargo installed on your machine. You can install Rust through rustup.

To create a new app, run:

create-gpui-app --name my-app
cd my-app

By default this will output:

my-app
├── src
│   ├── main.rs
├── Cargo.toml
├── README.md

create-gpui-app with no arguments will create a new app called gpui-app.

Running the App

  • During development: cargo run
  • For production/performance testing: cargo build --release

Contributing

Your contributions are welcome! Please read CONTRIBUTING.md for more details.

License

create-gpui-app is open source software licensed as MIT.

Commit count: 9

cargo fmt