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
/* base.css */ | |
/* http://carsonified.com/blog/design/setting-rather-than-resetting-default-styling/ */ | |
/* http://developer.yahoo.com/yui/fonts/ */ | |
/* http://developer.yahoo.com/yui/base/ */ | |
/* Font Reset from YUI http://developer.yahoo.com/yui/fonts | |
If you want this size in pixels (px) Declare this percent (%) | |
10 77 | |
11 85 |
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
# pretty colors | |
set -g default-terminal "screen-256color" | |
# default tmux key | |
unbind-key C-b | |
set -g prefix C-a | |
set -g base-index 1 | |
set -g history-limit 100000 |
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
# Apply to Shopify API # | |
Interested in working at Shopify? Don't use that form, you're a | |
developer and can clearly do better than that! | |
Instead you can apply to Shopify via our applicant API. Of course, | |
for the extra effort you will be given a higher priority than those | |
who simply apply via the webform. | |
# How? # |
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
class Shopify::AuthsController < ApplicationController | |
NONCE_LENGTH = 15 | |
AUTH_COOKIE_NAME = "_shopify_auth_session" | |
before_action :verify_request_hmac, only: :callback | |
before_action :verify_request_state, only: :callback | |
def new | |
# TODO: Check if we have a token already or if scopes have changed | |
if params[:embedded] |
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
diff --git a/node_modules/@shopify/cli-kit/dist/public/node/toml.js b/node_modules/@shopify/cli-kit/dist/public/node/toml.js | |
index a3c4503..8e26498 100644 | |
--- a/node_modules/@shopify/cli-kit/dist/public/node/toml.js | |
+++ b/node_modules/@shopify/cli-kit/dist/public/node/toml.js | |
@@ -1,13 +1,28 @@ | |
import * as toml from '@iarna/toml'; | |
+import {Liquid} from 'liquidjs'; | |
+import {readAndParseDotEnv } from './dot-env.js' | |
+import {fileExists} from './fs.js' | |
+import {joinPath, cwd} from './path.js' |
OlderNewer