- Clone the repository
- Set up your database and put the settings in
.env
. You can copy.env.example
to.env
as a starter. - Install the composer dependencies
composer install
- Install the NPM dependencies
npm install
- Run
php artisan key:generate
- Run
php artisan migrate
- Run
php artisan db:seed
to run seeders, if any. - Run
php artisan serve
You can now access the laravel project at https://localhost:8000
- Build the docker container
docker build -t wisvch/chtv .
- Run the docker container
docker run -p 8000:80 wisvch/chtv