rust-playground icon indicating copy to clipboard operation
rust-playground copied to clipboard

Unable to run playground locally

Open Genysys opened this issue 2 years ago • 1 comments

I am trying to run rust playground locally : https://github.com/integer32llc/rust-playground However , when i follow the instruction, the application doesnt start on 127.0.0.1:5000.

   Compiling octocrab v0.16.0
   Compiling ui v0.1.0 (/Users/Code/rust/rust-playground/ui)
    Finished dev [unoptimized + debuginfo] target(s) in 58.76s
     Running `target/debug/ui`

Genysys avatar Dec 31 '22 15:12 Genysys

Have you attempted to navigate to that URL?

From the output posted, it looks like the logger isn't enabled so nothing is being output. For example, I have RUST_LOG=ui=debug,access=debug,tower_http=trace in my .env file.

shepmaster avatar Jan 02 '23 17:01 shepmaster