Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atiladelcanton/zenticket
Sistema voltado para organização e fluxo de trabalho com sistema de chamados!
https://github.com/atiladelcanton/zenticket
Last synced: 6 days ago
JSON representation
Sistema voltado para organização e fluxo de trabalho com sistema de chamados!
- Host: GitHub
- URL: https://github.com/atiladelcanton/zenticket
- Owner: atiladelcanton
- Created: 2020-04-09T14:39:32.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-07-28T13:36:25.000Z (over 1 year ago)
- Last Synced: 2023-08-08T16:48:28.609Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 8.81 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
zenTicket Alpha
================### Run Project
First let's define our user to avoid problems with permissions, in your terminal on your computer type :
```shell
id -u && id -g
```
copy the result that gives in the terminal and replace in the docker-compose.yml```yaml
app:
image: zenticket_oficial/zenticket_v2:latest
user: "1001:1001" -- Change here
```
After create the .env file based on the .env.example```shell
cp .env.example .env
```
Start container
```shell
docker-compose up -d --build #run this command if the first time
docker-compose up -d
```After generating the .env run the command to create the image and install the dependencies!
```shell
docker-compose run --rm zenticket-app composer install
```