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
| :: Kaynak https://www.youtube.com/watch?v=XYAPSY4pIpw | |
| @echo off | |
| chcp 65001 > nul | |
| setlocal enabledelayedexpansion | |
| :: Ekranı temizle | |
| cls | |
| :: Renk ayarları | |
| color 0A |
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
| const EXTENSION_TYPE = { | |
| 0x01: 'PlainText', | |
| 0xF9: 'GraphicControl', | |
| 0xFE: 'Comment', | |
| 0xFF: 'Application' | |
| }; | |
| /** | |
| * Returns total length of data blocks sequence | |
| * |
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
| // Defining dependency variables | |
| var gulp = require('gulp'), | |
| cache = require('gulp-cache'), | |
| clean = require('gulp-clean'), | |
| stream = require('event-stream'), | |
| size = require('gulp-size'), | |
| jshint = require('gulp-jshint'), | |
| concat = require('gulp-concat'), | |
| uglify = require('gulp-uglify'), | |
| minifyCSS = require('gulp-minify-css'), |
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:latest | |
| container_name: dev_mysql | |
| environment: | |
| MYSQL_USER: user | |
| MYSQL_PASSWORD: user | |
| MYSQL_ROOT_PASSWORD: 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: "3.7" | |
| services: | |
| db: | |
| image: postgres:12.2 | |
| restart: always | |
| environment: | |
| POSTGRES_DB: postgres | |
| POSTGRES_USER: admin | |
| POSTGRES_PASSWORD: secret | |
| PGDATA: /var/lib/postgresql/data |
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.7' | |
| services: | |
| jenkins: | |
| image: 'jenkins:lts' | |
| container_name: jenkins | |
| privileged: true | |
| user: root | |
| ports: | |
| - 8081:8080 | |
| - 50000:50000 |