Compare commits

4 Commits

Author SHA1 Message Date
root 5601ebb7e4 fix: gitattributes 2026-06-29 23:48:59 -03:00
root 8c6f01e01d fix: rota de teste ajustada 2026-06-29 23:48:26 -03:00
root 2abe5436ea Merge pull request 'feat: adiciona rota de teste via branch' (#1) from feature-nova-rota into main
Reviewed-on: #1
2026-06-29 23:24:24 -03:00
root e35533f703 feat: adiciona rota de teste via branch 2026-06-29 23:19:02 -03:00
3 changed files with 11 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
# Força LF (Linux) em todos os arquivos de código.
# Evita problemas de CRLF/LF entre Windows e Linux no pipeline.
* text=auto eol=lf
# Binários — não converter quebras de linha
*.png binary
*.jpg binary
*.gif binary
*.ico binary
BIN
View File
Binary file not shown.
+2
View File
@@ -44,4 +44,6 @@ if (process.env.NODE_ENV !== 'test') {
}); });
} }
app.get("/teste", (req, res) => res.json({ msg: "Branch funcionando!" }));
module.exports = app; module.exports = app;