Improve your mental health by journaling using comments, categories and tags.
- Clone the repository
- Change into the new directory
- Copy the
.env.example
file to.env
- Run
docker compose up -d
to build the Docker image and run the Docker container. - Show the running containers
docker ps
- Connect into the container
docker exec -it <app-container-name> bash
- Run
php artisan key:generate
to set your app key - Run
php artisan migrate
to set up the database tables - Run
php artisan db:seed --class BaseSeeder
to finish the base database setup
- Run
Once your installation is up and running you may want to disable user registration.
To do this simply disable ENABLE_REGISTER
in your .env
file
Run the scheduled tasks:
* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1
See LICENSE.