Tableau Admin

Login
Insights Home Tableau Admin Home

Setting Up a .env File

Managing sensitive credentials like API keys, tokens, and passwords is critical for any application. Instead of hardcoding these values, you can store them in a .env file and load them securely in your code.

1. What is a .env File?

A .env file is a simple text file that contains key-value pairs. These pairs represent environment variables that your application can use. By keeping sensitive data here, you avoid exposing secrets in your codebase.

2. Creating a .env File

In the root directory of your project, create a file named .env and add your credentials. For example:

TABLEAU_SERVER_URL=https://your-tableau-server
TABLEAU_PAT_NAME=your_personal_access_token_name
TABLEAU_PAT_SECRET=your_personal_access_token_secret
TABLEAU_SITE_ID=
            

3. Loading Environment Variables in Python

Install the python-dotenv package if you haven’t already:

pip install python-dotenv

Then, in your Python scripts, load the variables by adding:

from dotenv import load_dotenv
import os

load_dotenv()  # This loads the variables from your .env file

# Access your variables
server_url = os.getenv('TABLEAU_SERVER_URL')
pat_name = os.getenv('TABLEAU_PAT_NAME')
pat_secret = os.getenv('TABLEAU_PAT_SECRET')
site_id = os.getenv('TABLEAU_SITE_ID')
            

4. Best Practices

  • Keep .env out of version control: Add .env to your .gitignore file.
  • Use secure storage: For production, consider using a dedicated secrets manager.
  • Document your variables: Maintain a sample file (e.g., .env.example) with keys and placeholder values.

5. Conclusion

By using a .env file to manage your credentials, you enhance your application's security and make configuration easier. This approach works well with Django, Flask, and many other frameworks.