INSERT GRAPHIC HERE (include hyperlink in image)
Subtitle or Short Description Goes Here
ideally one sentence >
| // javascriptreact.json | |
| // <==== REMEMBER TO ADD THE CONTENT ABOVE IN THE SPECIFIC FILE ON VSCODE ====> | |
| { | |
| /* | |
| // Place your snippets for JavaScript React here. Each snippet is defined under a snippet name and has a prefix, body and | |
| // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
| // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the | |
| // same ids are connected. | |
| // Example: |
Um parágrafo da descrição do projeto vai aqui
Essas instruções permitirão que você obtenha uma cópia do projeto em operação na sua máquina local para fins de desenvolvimento e teste.
Consulte Implantação para saber como implantar o projeto.
| const models = require('../app/models') | |
| const Sequelize = require('sequelize') | |
| const fs = require('fs') | |
| const path = require('path') | |
| const sequelize = new Sequelize('', '', '', { | |
| host: '', | |
| dialect: 'postgres' | |
| }) |
| const canvas = document.getElementById('board'); | |
| const ctx = canvas.getContext('2d'); | |
| ctx.scale(36, 36); | |
| const piece = { | |
| x: 3, | |
| y: 0, | |
| matrix: [ | |
| [0, 0, 0], |
A list of CLI generators, starter kits / boilerplates and toolkits to kick start your Next.js apps.