Compare commits

3 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
2 changed files with 11 additions and 1 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
+2 -1
View File
@@ -44,5 +44,6 @@ if (process.env.NODE_ENV !== 'test') {
});
}
module.exports = app;
app.get("/teste", (req, res) => res.json({ msg: "Branch funcionando!" }));
module.exports = app;