StandingTimes is a simple, easy-to-use, and free to use application for keeping track of how long you've been standing at your desk.
# It's copying the `.env.example` file to `.env` so that you can edit the environment variables.
$ cp .env.example .env
# It's installing all the dependencies that are listed in the `composer.json` file.
$ composer install
# It's generating a random key for the application.
$ php artisan key:generate
# It's creating the database tables.
$ php artisan migrate
# It's creating a symbolic link from `public/storage` to `storage/app/public`.
$ php artisan storage:link