From b3689305f1d0846f04b08a82d550dacbc0698822 Mon Sep 17 00:00:00 2001 From: keyzox Date: Wed, 5 Mar 2025 20:30:12 +0100 Subject: [PATCH] =?UTF-8?q?=E3=80=8C=E2=9C=A8=E3=80=8D=20feat:=20should=20?= =?UTF-8?q?be=20working?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..2a26a16 --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +# Inception Project + +This repository contains the Inception project, which requires specific environment variables and secrets to function correctly. Below are the instructions for setting up the necessary environment variables and secrets. + +## Environment Variables + +Create a `.env` file in the root directory of the project with the following environment variables: + +```plaintext +DB_USER=your_database_user +DB_NAME=your_database_name + +WP_ADMIN=your_wordpress_admin_user +WP_MAIL=your_wordpress_admin_email + +FTP_USER=your_ftp_user +``` + +## Secrets + +The secrets/ directory contains sensitive information required for various services. Ensure that the following files are present with the appropriate secrets: + +### Directory Structure + +``` +secrets/ +├── borg +│ └── passphrase.txt # Borg backup passphrase +├── db +│ ├── root_pass.txt # Database root password +│ └── user_pass.txt # Database user password +├── ftp +│ └── pass.txt # FTP password +└── wp + └── admin_pass.txt # WordPress admin password +```