This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| import Vue from 'vue' | |
| import Loading from "vue-loading-ajax-nprogress" | |
| Vue.use(Loading); | |
| export default { | |
| data: () => { | |
| return { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true" v-if="isLoading ? show : hide"> | |
| <div class="modal-dialog" role="document"> | |
| <div class="modal-content"> | |
| <div class="modal-header"> | |
| <h5 class="modal-title" id="exampleModalLabel">Carregando ....</h5> | |
| </div> | |
| <div class="modal-body"> | |
| Carregando | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| import Vue from 'vue' | |
| import axios from 'axios' | |
| export default { | |
| data: () => { | |
| return { | |
| dados: [] | |
| } | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <div> | |
| <el-button size="small" type="success" class="novo" @click="novo">Novo</el-button> | |
| <el-dialog title="Cadastro de Grupos" :visible.sync="dialogFormVisible"> | |
| <el-form :model="form"> | |
| <el-form-item label="Nome" :label-width="formLabelWidth"> | |
| <el-input v-model="form.name" name="name" auto-complete="off"></el-input> | |
| </el-form-item> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <div> | |
| <el-button size="small" type="success" class="novo" @click="dialogFormVisible = true">Novo</el-button> | |
| <el-dialog title="Cadastro de Grupos" :visible.sync="dialogFormVisible"> | |
| <el-form :model="form"> | |
| <el-form-item label="Nome" :label-width="formLabelWidth"> | |
| <el-input v-model="form.name" name="name" auto-complete="off"></el-input> | |
| </el-form-item> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| networks: | |
| default: | |
| external: | |
| name: soitic | |
| services: | |
| influxsrv: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| mysql: | |
| image: mysql | |
| ports: | |
| - 3306:3306 | |
| environment: | |
| MYSQL_USER: root |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '2' | |
| services: | |
| mailserver: | |
| image: hardware/mailserver | |
| container_name: mailserver | |
| domainname: indevweb.tk # Mail server FQDN & reverse = mail.domain.tld. | |
| hostname: mail | |
| # restart: always | |
| # extra_hosts: - Required for external database (on other server or for local database on host) | |
| # - "mariadb:xx.xx.xx.xx" - Replace with IP address of MariaDB server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM alephp/debian-apache-php:php7 | |
| MAINTAINER Alexandre E Souza <alexandre@indev.net.br> | |
| RUN rm -rf /var/www/html | |
| RUN sed -i 's/html/public/g' /etc/apache2/sites-available/000-default.conf | |
| RUN chmod 777 -R /var/www/ | |
| RUN apt-get install -y curl | |
| #------------------------------ | |
| # composer | |
| #______________________________ | |
| RUN cd /tmp \ |