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
import React from 'react' | |
import { Editor } from '@tiptap/react' | |
import { | |
BoldSVG, | |
BulletsSVG, | |
ImageSVG, | |
ItalicSVG, | |
LinkSVG, |
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
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |
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
- View all tables | |
`\l` | |
- Switch to particular db | |
`\c jpa;` |
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
##### Pull repo from Docker hub | |
`docker pull <image>` | |
##### List Docker images | |
`docker images` | |
## Docker build | |
docker build -f Dockerfile -t hobnob/crm-v1 . | |
##### List Docker running containers |
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
#!/bin/sh | |
# Called by "git push" after it has checked the remote status, | |
# but before anything has been pushed. | |
# | |
# If this script exits with a non-zero status nothing will be pushed. | |
# | |
# Steps to install, from the root directory of your repo... | |
# 1. Copy the file into your repo at `.git/hooks/pre-push` | |
# 2. Set executable permissions, run `chmod +x .git/hooks/pre-push` |
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
#!/bin/bash | |
# store name of current branch | |
BRANCH=$(git branch | grep \* | cut -d ' ' -f2) | |
# checkout master | |
git checkout master | |
# pull the latest changes | |
git pull |
If you haven't already set your NPM author info, now you should:
npm config set init.author.name "Your Name"
npm config set init.author.email "[email protected]"
npm config set init.author.url "https:/yourblog.com"
npm config set init.version "1.0.0"
NewerOlder