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
services: | |
change-vol-ownership: | |
image: ubuntu | |
user: root | |
networks: | |
- twentycrm_default | |
volumes: | |
- server-local-data:/tmp/server-local-data | |
- docker-data:/tmp/docker-data | |
command: > |
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
services: | |
op-geo: | |
image: observabilitystack/geoip-api:latest | |
container_name: openpanel-geo | |
networks: | |
- openpanel_default | |
- database | |
- store | |
restart: always | |
op-ch: |
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
# Inserts a blank line between shell prompts | |
add_newline = false | |
# Replace the "❯" symbol in the prompt with "➜" | |
[character] # The name of the module we are configuring is "character" | |
success_symbol = "[➜](bold green)" # The "success_symbol" segment is being set to "➜" with the color "bold green" | |
error_symbol = "[➜](red)" | |
[directory] |
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
alias cat="bat" | |
alias l="exa -a -l -g --icons" | |
alias ls="exa -a" | |
alias lt="exa --tree --level=2 -a" | |
alias ip="ipconfig getifaddr en0" | |
alias publicip="curl ifconfig.me && echo" | |
alias brewup="brew update; brew upgrade; brew cleanup; brew doctor; brew autoremove;" | |
alias ohzshupgrade="upgrade_oh_my_zsh" | |
alias zshconfig="code ~/.zshrc" |
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
<script> | |
export let name; | |
</script> | |
<style> | |
h1 { | |
text-align: center; | |
} | |
</style> |
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
<script> | |
export let name; | |
</script> | |
<style> | |
h1 { | |
text-align: center; | |
} | |
</style> |
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
import * as React from "react"; | |
import { render } from "react-dom"; | |
import { Hello } from "./Hello"; | |
// import './styles/index.css' | |
const App = () => { | |
return ( | |
<div> | |
{/* make sure Typescript is working by using number type */} | |
<Hello compiler="Parcel" framework={123} /> |
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
alias brewup='brew update; brew upgrade; brew prune; brew cleanup; brew doctor' | |
# Set default editor to vscode | |
export EDITOR="code" | |
# Ignore duplicate commands in the history | |
export HISTCONTROL=ignoredups | |
# Increase the maximum number of lines contained in the history file | |
# (default is 500) |