Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rafamancan/paganois
[WIP] Projeto para calcular horas de freelas
https://github.com/rafamancan/paganois
laravel laravel-bree tailwind vite
Last synced: about 2 months ago
JSON representation
[WIP] Projeto para calcular horas de freelas
- Host: GitHub
- URL: https://github.com/rafamancan/paganois
- Owner: rafamancan
- Created: 2023-12-27T03:50:57.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-05T21:53:53.000Z (about 1 year ago)
- Last Synced: 2024-11-29T22:51:01.560Z (about 2 months ago)
- Topics: laravel, laravel-bree, tailwind, vite
- Language: PHP
- Homepage:
- Size: 1010 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Running locally
```sh
docker build --tag paganois-image .
docker run --name paganois -d -e PORT=80 -p 20001:80 -v ${PWD}:/app paganois-image
docker exec -it paganois composer install
docker exec -it paganois php artisan storage:link
docker exec -it paganois php artisan migrate
docker exec -it paganois php artisan db:seed
```Enter in container with:
```sh
docker exec -it paganois bash
```Once inside run the following commands:
```sh
chown -R www-data: /app/storage
```If you can't save any file, run the following command, outside the container:
```sh
sudo chown -R $USER
```