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
| <!DOCTYPE html> | |
| <html> | |
| <style> | |
| body { | |
| -webkit-app-region: drag; | |
| user-select: none; | |
| margin: 0; | |
| overflow: hidden; | |
| } |
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 fs = require('fs'); | |
| const { createWriteStream } = require('fs'); | |
| console.log('Start'); | |
| setTimeout(() => console.log('Timeout (timers queue) 1 (2 loop iteration)'), 0); | |
| process.nextTick(() => console.log('NextTick (microtask) 1 (1 loop iteration)')) | |
| Promise.resolve().then(() => { |
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
| #--------------------------------------------------------------- | |
| #-- CONFIG -- | |
| #--------------------------------------------------------------- | |
| PHP_CONTAINER=project_name_phpfpm | |
| REDIS_CONTAINER=project_name_redis | |
| #--------------------------------------------------------------- | |
| #-- DOCKER UP -- | |
| #--------------------------------------------------------------- |
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
| #!/bin/bash | |
| # instead "~" use "$HOME" | |
| # example "$HOME/www" | |
| PATH_TO_DEPLOY="." | |
| echo "Backend semi-auto deploy" | |
| #--------------------------------------------------------------- | |
| #-- DEPLOY STAGE -- |