Git is a distributed version control system that allows developers to:
- Track changes in code.
- Collaborate on projects.
- Manage multiple versions of a project.
- Work offline with a full local repository.
// FOREST | |
const COLORS = { | |
primary: "#4CAF50", | |
textPrimary: "#2e5a2e", | |
textSecondary: "#688f68", | |
textDark: "#1b361b", | |
placeholderText: "#767676", | |
background: "#e8f5e9", | |
cardBackground: "#f1f8f2", | |
inputBackground: "#f4faf5", |
<div class="m-10 rounded-lg bg-white px-6 py-8 shadow-xl ring-1 ring-slate-900/5 dark:bg-black"> | |
<h3 class="text-base font-medium tracking-tight text-slate-900 dark:text-white">Writes Upside-Down</h3> | |
<p class="mt-2 text-sm text-slate-500 dark:text-blue-100">The Zero Gravity Pen can be used to write in any orientation, including upside-down. It even works in outer space.</p> | |
<button | |
id="toggleDark" | |
class="px-4 py-2 text-sm font-medium mt-8 text-blue-900 bg-blue-100 rounded-md" | |
onclick="document.body.classList.toggle('dark')" | |
>Toggle Dark Mode</button> | |
</div> |
#!/bin/bash | |
# Executar comandos a seguir para atualizar os pacotes | |
sudo apt update -y | |
sudo apt upgrade -y | |
# Só o Python | |
sudo apt install python3.10-full python3.10-dev -y | |
# Instalar pacotes a seguir |
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap"); | |
@tailwind base; | |
@tailwind components; | |
@tailwind utilities; | |
:root { | |
--blue-rgb: 237 245 255; | |
--green-rgb: 125 161 35; | |
} |
version: "3.7" | |
# Networks | |
networks: | |
# Internal network | |
internal: | |
driver: bridge | |
# Volumes | |
volumes: |
import { | |
mobile, | |
backend, | |
creator, | |
web, | |
javascript, | |
typescript, | |
html, | |
css, | |
reactjs, |
@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans:wght@100;300;400;500;700;800;900&display=swap"); | |
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
font-family: "Alegreya Sans", sans-serif; | |
} | |
body { |
("use strict"); | |
const stripe = require("stripe")(process.env.STRIPE_KEY); | |
/** | |
* order controller | |
*/ | |
const { createCoreController } = require("@strapi/strapi").factories; | |
module.exports = createCoreController("api::order.order", ({ strapi }) => ({ | |
async create(ctx) { |