Skip to content

Instantly share code, notes, and snippets.

@yicaoyimu
yicaoyimu / docker-compose.yml
Created August 15, 2021 21:55
Docker compose file for Dam998/shopify-monitor
version: "3"
services:
web:
build: .
ports:
- "5000:5000"
links:
- mongo
mongo:
image: mongo:latest
@yicaoyimu
yicaoyimu / Dockerfile
Created August 15, 2021 21:55
Docker file for Dam998/shopify-monitor
# syntax=docker/dockerfile:1
FROM node:16.2.0
ENV NODE_ENV=production
WORKDIR /app
COPY ["package.json", "package-lock.json*", "./"]
RUN npm install
@yicaoyimu
yicaoyimu / private.xml
Created February 17, 2013 17:41
KeyRemap4MacBook配置文件,帮助Mac用户在Mac上实现PC的快捷键操作
<?xml version="1.0"?>
<root>
<devicevendordef>
<vendorname>APPLE</vendorname>
<vendorid>0x05ac</vendorid>
</devicevendordef>
<deviceproductdef>
<productname>INTERNAL_KEYBOARD</productname>
@yicaoyimu
yicaoyimu / private.xml
Last active December 13, 2015 17:38
A KeyRemap4MacBook configuration file. This configuration file is good for those users that switch from Linux key bindings to Mac, and is especially useful for Emacs users. This configuration works for Macbook Pro with external USA standard keyboard. The device id needs to be changed to be applied to any keyboard that is not Realforce 87U.
<?xml version="1.0"?>
<root>
<devicevendordef>
<vendorname>APPLE</vendorname>
<vendorid>0x05ac</vendorid>
</devicevendordef>
<deviceproductdef>
<productname>INTERNAL_KEYBOARD</productname>