Skip to content

Latest commit

 

History

History

app

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Voting example (MoonZoon app)

MoonZoon is a Rust Fullstack Framework.

Run on a local machine

  1. Follow instructions in /program/README.md.

  2. Go to the /app directory.

  3. Install mzoon to cargo_install_root:

    cargo install mzoon --git https://github.com/MoonZoon/MoonZoon --rev a1ed81c --root cargo_install_root --locked
    • Note: There will be faster and simpler ways with pre-compiled binaries.
  4. Move cargo_install_root/bin/mzoon to the project root.

    mv cargo_install_root/bin/mzoon mzoon
    # or
    move cargo_install_root/bin/mzoon mzoon
    • Note:: You can delete the cargo_install_root directory now.
  5. Build and run:

    ./mzoon start -o
    # or
    mzoon start -o
    • Note: -o / --open opens a new tab in your browser.
    • Note: The app is much faster when built in the release mode (-r).