Skip to content

Instantly share code, notes, and snippets.

View andynguyenm's full-sized avatar
💭
Let do thing ?

AndyNM andynguyenm

💭
Let do thing ?
  • Sudobo JSC
  • Ha Noi, Viet Nam
View GitHub Profile
@andynguyenm
andynguyenm / create_release_branch.yml
Created October 7, 2022 03:27 — forked from riggaroo/create_release_branch.yml
Github Action workflow for creating release branch, updating versionName and versionCode, copying strings.xml to another repo, submitting PRs as per GitFlow.
name: Create Release Branch
on:
workflow_dispatch:
inputs:
versionName:
description: 'Name of version (ie 5.5.0)'
required: true
versionCode:
description: 'Version number (50500)'
required: true
@andynguyenm
andynguyenm / media-query.css
Created December 12, 2019 02:19 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@andynguyenm
andynguyenm / nginx.conf
Created July 21, 2019 11:47 — forked from ashleydw/nginx.conf
Laravel nginx conf file
server {
listen 80 default_server;
server_name example.com www.example.com;
access_log /srv/www/example.com/logs/access.log;
error_log /srv/www/example.com/logs/error.log;
root /srv/www/example.com/public;
index index.php index.html;
@andynguyenm
andynguyenm / Envoy.blade.php
Created January 23, 2019 10:53 — forked from gvsrepins/Envoy.blade.php
A Laravel envoy script for deployment
@servers(['production' => 'productionserver', 'local'=> 'vagrant@127.0.0.1 -p 2222'])
{{-- Configuration section --}}
@setup
/*
|--------------------------------------------------------------------------
| Git Config
|--------------------------------------------------------------------------
|