Guest User

Untitled

a guest
Jul 26th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. # The environment Craft is currently running in ('dev', 'staging', 'production', etc.)
  2. ENVIRONMENT="dev"
  3.  
  4. # The secure key Craft will use for hashing and encrypting data
  5. SECURITY_KEY="generate-a-long-random-key-and-put-it-here"
  6.  
  7. # The database driver that will be used ('mysql' or 'pgsql')
  8. DB_DRIVER="mysql"
  9.  
  10. # The database server name or IP address (usually this is 'localhost' or '127.0.0.1')
  11. DB_SERVER="localhost"
  12.  
  13. # The database username to connect with
  14. DB_USER="root"
  15.  
  16. # The database password to connect with
  17. DB_PASSWORD=""
  18.  
  19. # The name of the database to select
  20. DB_DATABASE="optima_local"
  21.  
  22. # The database schema that will be used (PostgreSQL only)
  23. DB_SCHEMA="public"
  24.  
  25. # The prefix that should be added to generated table names (only necessary if multiple things are sharing the same database)
  26. DB_TABLE_PREFIX=""
  27.  
  28. # The port to connect to the database with. Will default to 5432 for PostgreSQL and 3306 for MySQL.
  29. DB_PORT=""
Add Comment
Please, Sign In to add comment