This file contains 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
What is the App ID and name? | |
What is the expected outcome of using the app? And what's happening instead of that intended outcome? | |
Timeframe - when did this start happening or, if it worked previously, when did it stop working? | |
Is the issue affecting a certain store, or multiple merchants? Please share the affected store(s) here: |
This file contains 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
Usage: | |
rails new APP_PATH [options] | |
Options: | |
[--skip-namespace], [--no-skip-namespace] # Skip namespace (affects only isolated engines) | |
[--skip-collision-check], [--no-skip-collision-check] # Skip collision check | |
-r, [--ruby=PATH] # Path to the Ruby binary of your choice | |
# Default: /Users/soulchild/.rubies/ruby-3.1.2/bin/ruby | |
-m, [--template=TEMPLATE] # Path to some application template (can be a filesystem path or URL) | |
-d, [--database=DATABASE] # Preconfigure for selected database (options: mysql/postgresql/sqlite3/oracle/sqlserver/jdbcmysql/jdbcsqlite3/jdbcpostgresql/jdbc) |
This file contains 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
<script> | |
var cancellable_hash = window.location.hash.substr(1); | |
if(cancellable_hash === 'actions'){ | |
setTimeout(function() { | |
document.getElementById('cancellable-title').scrollIntoView(); | |
}, 1500); | |
} | |
</script> |
This file contains 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
{% unless line.properties == empty %} | |
<ul style="list-style-type: none; padding: 0;"> | |
{% for property in line.properties %} | |
<li><span class="order-list__item-variant">{{ property.first }}: {{ property.last }}</span></li> | |
{% endfor %} | |
</ul> | |
{% endunless %} |
This file contains 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
FROM ruby:2.7 | |
# Add the key of yarn repo | |
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - | |
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list | |
RUN apt-get update -yqq | |
RUN apt-get install -yqq --no-install-recommends nodejs yarn |
This file contains 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
tell application "Terminal" | |
activate | |
do script "rails server" in tab 1 of front window | |
my makeTab() | |
do script "./bin/webpack-dev-server" in selected tab of front window | |
delay 1 | |
my makeTab() | |
do script "rails console" in selected tab of front window | |
end tell |
This file contains 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
tell application "Terminal" | |
activate | |
do script "cd ~/Repository/path-to-your-rails-app; rails server" in tab 1 of front window | |
my makeTab() | |
do script "cd ~/Repository/path-to-your-rails-app; ./bin/webpack-dev-server" in selected tab of front window | |
end tell | |
on makeTab() | |
tell application "System Events" to keystroke "t" using {command down} |
This file contains 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> | |
<head> | |
<title>Sample Rails app</title> | |
<%= csrf_meta_tags %> | |
<%= csp_meta_tag %> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<%= stylesheet_pack_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> |
This file contains 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
# change this to your deploy user | |
set :user, 'deploy' | |
# change this to your rails app name | |
set :application, 'cool' | |
# change this to your rails app repository URL | |
set :repo_url, '[email protected]:soulchild/capify_sample.git' | |
# Deploy to the user's home directory, no need to change this |
This file contains 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
# Load DSL and set up stages | |
require "capistrano/setup" | |
# Include default deployment tasks | |
require "capistrano/deploy" | |
require "capistrano/scm/git" | |
install_plugin Capistrano::SCM::Git | |
require 'capistrano/rbenv' |
NewerOlder