Just run this on terminal:
echo -e '\n. $HOME/.asdf/asdf.sh' >> ~/.zshrc
If don't work, bring the code . $HOME/.asdf/asdf.sh to top of your .zshrc file
| SERVER_TYPE=http | |
| SERVER_PORT=8080 | |
| SERVER_URL=http://localhost:8080 | |
| AUTHENTICATION_API_KEY=123TESTDEV | |
| DATABASE_PROVIDER=postgresql | |
| DATABASE_CONNECTION_URI=postgresql://dev:DEVPASSWORD@postgres:5432/evolution?schema=public | |
| # Determine the logs to be displayed | |
| LOG_LEVEL=ERROR,WARN,DEBUG,INFO,LOG,VERBOSE,DARK,WEBHOOKS,WEBSOCKET |
| console.log("Try 1") |
| const BackTotop = () => { | |
| const [showScroll, setShowScroll] = useState(false) | |
| const checkScrollTop = () => { | |
| if (!showScroll && window.pageYOffset > 400) { | |
| setShowScroll(true) | |
| } else if (showScroll && window.pageYOffset <= 400) { | |
| setShowScroll(false) | |
| } | |
| } |
| import React from 'react'; | |
| import { Feather } from '@expo/vector-icons'; | |
| import { View, TouchableOpacity, Text, StyleSheet } from 'react-native'; | |
| type CheckboxProps = { | |
| label: string, | |
| labelStyle: object, | |
| iconColor: string, | |
| onChange: () => void, | |
| value: boolean, |
| [ | |
| { | |
| "author": "Ray Dalio", | |
| "itemId": "8551003429", | |
| "link": "https://amzn.to/2P975Bx", | |
| "title": "Principios" | |
| } | |
| , | |
| { | |
| "author": "Aditya Y.", |
| 🏆 529 Contributions in year 2021 | |
| 📦 Used 120 MB in GitHub's Storage | |
| 📜 12 Public Gists | |
| 🔑 3 Public Keys | |
| 💼 Opted to Hire |
| me = config user.name | |
| # Less verbose status | |
| st = status -sb | |
| # Checkout | |
| co = checkout | |
| # Checkout master | |
| cm = checkout master |
| { | |
| "meta-page": " (Página %)", | |
| "Back to Homepage": "Voltar ao inicio", | |
| "No posts": "Sem postagens", | |
| "1 post": "1 post", | |
| "% posts": "% posts", | |
| "Load more": "Carregar mais", | |
| "Featured": "Destaque", | |
| "Newer Post": "Post Novo", | |
| "Older Post": "Post Antigo", |
| import { useEffect } from 'react'; | |
| import NProgress from 'nprogress'; | |
| import Router from 'next/router'; | |
| import PropTypes from 'prop-types'; | |
| export default function NextNProgress({ | |
| color = '#29D', | |
| startPosition = 0.3, | |
| stopDelayMs = 200, | |
| height = 3, |