First version, for githup; UNSTABLE, DO NOT USE!
This commit is contained in:
37
config/readme.md
Normal file
37
config/readme.md
Normal file
@@ -0,0 +1,37 @@
|
||||
To get started, you must replace the placeholder values in the example files with your actual credentials.
|
||||
|
||||
1. Database & Redis Credentials
|
||||
Copy the following example files and replace all values with your specific credentials:
|
||||
|
||||
.env.db.example → .env.db
|
||||
.env.db-guest.example → .env.db-guest
|
||||
.env.redis.example → .env.redis
|
||||
.env.pw-encryption-key.example → .env.pw-encryption-key
|
||||
|
||||
|
||||
2. Table Prefix Configuration
|
||||
Open the file .env.db-tables.example and modify only the DB_PREFIX line.
|
||||
|
||||
⚠️ Important: If you used the generate-sql.php script, the prefix in this file must match exactly the one generated by that script. Do not edit any other lines in this file, as it may break the system structure.
|
||||
|
||||
3. Remove .example Suffix
|
||||
For the system to load the configuration correctly, you must remove the .example extension from all files.
|
||||
|
||||
Option A: Manual Rename Simply rename the files in your file explorer:
|
||||
|
||||
.env.db
|
||||
.env.db-guest
|
||||
.env.redis
|
||||
.env.db-tables
|
||||
.env.pw-encryption-key
|
||||
|
||||
|
||||
Option B: Terminal Command Run the following commands in your project root:
|
||||
|
||||
mv .env.db.example .env.db
|
||||
mv .env.db-guest.example .env.db-guest
|
||||
mv .env.redis.example .env.redis
|
||||
mv .env.db-tables.example .env.db-tables
|
||||
mv .env.pw-encryption-key.example .env.pw-encryption-key
|
||||
|
||||
Once these steps are complete, the system is ready to use.
|
||||
Reference in New Issue
Block a user