This Laravel application facilitates secure, encrypted messaging between users. It features encrypted messages that expire after a set period or after being read. This README provides detailed instructions for setting up and running the application using Docker or manual setup methods.
- PHP: ^8.2
- MySQL: ^8.0
- Composer
- Docker: (if using Docker for setup)
- Git
You can set up and run the application in one of two ways: using Docker or a manual setup process.
This method simplifies the setup process and manages dependencies through Docker and Docker Compose.
git clone git@github.com:subtain-haider/secret_messages.git secret_messages
cd secret_messages
docker compose up
This command builds the Docker environment, runs migrations, executes tests, and starts the server. The application will be accessible at http://0.0.0.0:8000
For those preferring a manual setup without Docker.
git clone git@github.com:subtain-haider/secret_messages.git secret_messages
cd secret_messages
Copy the .env.example file to create a .env file:
cp .env.example .env
Open the .env file and adjust the database credentials and any other environment-specific settings.
composer install
php artisan key:generate
php artisan migrate
This command sets up your database schema.
php artisan serve
This will start the Laravel development server, typically accessible at http://127.0.0.1:8000
./vendor/bin/phpunit
Use this command to run the PHPUnit tests and ensure all components are functioning correctly.
- Ensure that all required PHP extensions are installed. For manual setup, you might need to install extensions like PHP GD, mbstring, and others depending on your PHP environment.
- When using Docker, the docker compose up command handles all setup steps, including running migrations and tests. Check Docker logs for any setup or test execution errors.