Compare commits

...

2 commits

Author SHA1 Message Date
Jo
31d42c8bbb [routes] modify comment 2024-02-21 00:13:40 +01:00
Jo
022935f14c [workflows] rename .gitea to .forgejo, modify .gitignore 2024-02-21 00:11:09 +01:00
3 changed files with 5 additions and 2 deletions

3
.gitignore vendored
View file

@ -4,3 +4,6 @@ node_modules
# Config files
config/config.json
.env
# Docker
docker-compose.yml

View file

@ -2,7 +2,7 @@ const express = require("express");
const router = express.Router();
router.get("/", (req, res) => {
// API stuff goes here
// API stuff goes here :3
});
module.exports = router;