Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
```