Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/scemist/thunplate
- Owner: Scemist
- Created: 2023-11-11T23:20:23.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-11T23:34:31.000Z (about 1 year ago)
- Last Synced: 2023-11-12T00:23:35.752Z (about 1 year ago)
- Language: PHP
- Size: 77.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 shcp .env.example .env
composer install
npm install
chmod -R 755 /app && \
chmod -R ugo+rwx /app/storage && \
chmod -R ugo+rwx /app/bootstrap/cachephp artisan key:generate
```## Production
```sh
docker compose -f docker-compose.prod.yml up --detach --build --renew-anon-volumes
```