Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/scemist/thunplate

This is a project setup with the following technologies: PHP, Laravel, TailwindCSS, Lucide Icons, Vite and Docker. All in Hot Reload.
https://github.com/scemist/thunplate

Last synced: about 2 months ago
JSON representation

This is a project setup with the following technologies: PHP, Laravel, TailwindCSS, Lucide Icons, Vite and Docker. All in Hot Reload.

Awesome Lists containing this project

README

        

# Start the Containers

## Development

```sh
docker compose up -d --build
```

### First Commands to Run

```sh
sudo docker exec -it thunplate-php-1 sh

cp .env.example .env

composer install

npm install

chmod -R 755 /app && \
chmod -R ugo+rwx /app/storage && \
chmod -R ugo+rwx /app/bootstrap/cache

php artisan key:generate
```

## Production

```sh
docker compose -f docker-compose.prod.yml up --detach --build --renew-anon-volumes
```