We are using a simple git flow based on git flow and github flow. We have two branches develop and master.
develop is a representation of staging
master is a representation of production
| ruby '2.7.1' | |
| gem 'rails', github: 'rails/rails' | |
| gem 'tzinfo-data', '>= 1.2016.7' # Don't rely on OSX/Linux timezone data | |
| # Action Text | |
| gem 'actiontext', github: 'basecamp/actiontext', ref: 'okra' | |
| gem 'okra', github: 'basecamp/okra' | |
| # Drivers |
| jQuery( function( $ ) { | |
| if ( 'undefined' === typeof FB ) | |
| return; | |
| if ( $( 'body' ).hasClass( 'single-post' ) || $( 'body' ).hasClass( 'page' ) ) { | |
| var $comments_div = $( '<div/>' ); | |
| $comments_div.addClass( 'fb-comments' ); | |
| $comments_div.attr( 'data-href', document.location ); | |
| $comments_div.appendTo( $( '.primary-content' ) ); |
To setup your computer to work with *.dev domains, e.g. project.dev, awesome.dev and so on, without having to add to your hosts file each time.
| // api/index.js | |
| import Request from 'superagent' | |
| export const getUser (userId) { | |
| return Request | |
| .get('/api/user/:userId'); | |
| } |
| ======= Prolbem ================================================================================================================= | |
| I have installed : ruby-2.0.0,postgres-9.2 , now in rails app when I execute: | |
| rake db:create , command I get: | |
| PG::InvalidParameterValue: ERROR: new encoding (UTF8) is incompatible with the encoding of the template database (SQL_ASCII) | |
| HINT: Use the same encoding as in the template database, or use template0 as template. | |
| : CREATE DATABASE "my_db_name" ENCODING = 'unicode'....... | |
| bin/rake:16:in `load' |
| var http = require("http"), | |
| url = require("url"), | |
| path = require("path"), | |
| fs = require("fs") | |
| port = process.argv[2] || 8888; | |
| http.createServer(function(request, response) { | |
| var uri = url.parse(request.url).pathname | |
| , filename = path.join(process.cwd(), uri); |
| apt-get install -y ppa-purge | |
| add-apt-repository -y ppa:ondrej/php5-oldstable | |
| apt-get update | |
| ppa-purge ppa:ondrej/php5 | |
| apt-get update && apt-get upgrade -y && apt-get autoremove -y && apt-get autoclean -y |
| { | |
| "bold_folder_labels": true, | |
| "caret_style": "phase", | |
| "color_scheme": "Packages/Color Scheme - Default/Mac Classic.tmTheme", | |
| "font_face": "Source Code Pro", | |
| "font_size": 14.0, | |
| "highlight_line": true, | |
| "theme": "Soda Light.sublime-theme", | |
| "translate_tabs_to_spaces": true | |
| } |
| Additional PHP Snippets | |
| DocBlockr | |
| jQuery | |
| Package Control | |
| PHP Namespace Command | |
| PHP-Twig | |
| PhpBeutifier | |
| Phpcs | |
| PhpDoc | |
| Pretty JSON |