RustRover cargo-generate template: Axum + Vue 3 + TypeScript + Tailwind + sqlx
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

12 righe
448 B

  1. # Copy to .env in the workspace root. dotenv is optional — TOML + APP__* win.
  2. APP_ENV=development
  3. # Overrides config/*.toml. Nested keys use a double underscore after APP.
  4. # The running server reads APP__DATABASE__URL, not DATABASE_URL.
  5. # APP__SERVER__PORT=8080
  6. APP__DATABASE__URL=postgres://app:app@127.0.0.1:5432/app
  7. # Used by sqlx-cli if you install it. The Axum process ignores this key.
  8. DATABASE_URL=postgres://app:app@127.0.0.1:5432/app