Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for variabel (0.05 sec)

  1. docs/de/docs/advanced/settings.md

    # Einstellungen und Umgebungsvariablen { #settings-and-environment-variables }
    
    In vielen Fällen benötigt Ihre Anwendung möglicherweise einige externe Einstellungen oder Konfigurationen, zum Beispiel geheime Schlüssel, Datenbank-Anmeldeinformationen, Anmeldeinformationen für E-Mail-Dienste, usw.
    
    Die meisten dieser Einstellungen sind variabel (können sich ändern), wie z. B. Datenbank-URLs. Und vieles könnten schützenswerte, geheime Daten sein.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 24 10:28:19 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_id.properties

    labels.failure_url_web_config_name=Konfigurasi Perayapan Web
    labels.failure_url_file_config_name=Konfigurasi Perayapan Berkas
    labels.system_info_configuration=Info Sistem
    labels.system_info_env_title=Properti Variabel Lingkungan
    labels.system_info_prop_title=Properti Sistem
    labels.system_info_fess_prop_title=Properti Aplikasi
    labels.system_info_bug_report_title=Properti Laporan Bug
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 45.2K bytes
    - Viewed (0)
  3. docs/es/docs/environment-variables.md

    # Variables de Entorno { #environment-variables }
    
    /// tip | Consejo
    
    Si ya sabes qué son las "variables de entorno" y cómo usarlas, siéntete libre de saltarte esto.
    
    ///
    
    Una variable de entorno (también conocida como "**env var**") es una variable que vive **fuera** del código de Python, en el **sistema operativo**, y podría ser leída por tu código de Python (o por otros programas también).
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 16:33:45 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  4. docs/de/docs/python-types.md

    #### Liste { #list }
    
    Definieren wir zum Beispiel eine Variable, die eine `list` von `str` – eine Liste von Strings – sein soll.
    
    Deklarieren Sie die Variable mit der gleichen Doppelpunkt-Syntax (`:`).
    
    Als Typ nehmen Sie `list`.
    
    Da die Liste ein Typ ist, welcher innere Typen enthält, werden diese von eckigen Klammern umfasst:
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 17.9K bytes
    - Viewed (1)
  5. docs/es/docs/how-to/conditional-openapi.md

    No obstante, podrías tener un caso de uso muy específico donde realmente necesites desactivar la documentación de la API para algún entorno (por ejemplo, para producción) o dependiendo de configuraciones de variables de entorno.
    
    ## OpenAPI condicional desde configuraciones y variables de entorno { #conditional-openapi-from-settings-and-env-vars }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/settings.md

    # Settings and Environment Variables { #settings-and-environment-variables }
    
    In many cases your application could need some external settings or configurations, for example secret keys, database credentials, credentials for email services, etc.
    
    Most of these settings are variable (can change), like database URLs. And many could be sensitive, like secrets.
    
    For this reason it's common to provide them in environment variables that are read by the application.
    
    /// tip
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 20 15:55:38 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  7. docs/de/docs/virtual-environments.md

    ////
    
    Dieser Befehl erstellt oder ändert einige [Umgebungsvariablen](environment-variables.md){.internal-link target=_blank}, die für die nächsten Befehle verfügbar sein werden.
    
    Eine dieser Variablen ist die `PATH`-Variable.
    
    /// tip | Tipp
    
    Sie können mehr über die `PATH`-Umgebungsvariable im Abschnitt [Umgebungsvariablen](environment-variables.md#path-environment-variable){.internal-link target=_blank} erfahren.
    
    ///
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 02 17:32:56 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  8. docs/es/docs/advanced/settings.md

    /// tip | Consejo
    
    Para entender las variables de entorno, puedes leer [Variables de Entorno](../environment-variables.md){.internal-link target=_blank}.
    
    ///
    
    ## Tipos y validación { #types-and-validation }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  9. docs/en/docs/how-to/conditional-openapi.md

    Here we declare the setting `openapi_url` with the same default of `"/openapi.json"`.
    
    And then we use it when creating the `FastAPI` app.
    
    Then you could disable OpenAPI (including the UI docs) by setting the environment variable `OPENAPI_URL` to the empty string, like:
    
    <div class="termy">
    
    ```console
    $ OPENAPI_URL= uvicorn main:app
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  10. docs/en/docs/virtual-environments.md

    ////
    
    That command will create or modify some [environment variables](environment-variables.md){.internal-link target=_blank} that will be available for the next commands.
    
    One of those variables is the `PATH` variable.
    
    /// tip
    
    You can learn more about the `PATH` environment variable in the [Environment Variables](environment-variables.md#path-environment-variable){.internal-link target=_blank} section.
    
    ///
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 02 05:09:25 UTC 2025
    - 22.8K bytes
    - Viewed (0)
Back to top