Skip to content

Commit

Permalink
Merge branch 'main' into alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
my-opencode authored Aug 16, 2024
2 parents 4f90211 + a2c3a43 commit 27a9a3c
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 4 deletions.
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ back/tmp
back/logs
docker-logs
back/docker-logs
tmp
tmp
2 changes: 1 addition & 1 deletion back/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -400,4 +400,4 @@
ErrorStringPayload:
type: string
Error404Payload:
type: string
type: string
5 changes: 5 additions & 0 deletions back/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions back/server.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import test from "node:test";
import * as assert from "node:assert";

test('1 is equal to 1.', () => {
assert.strictEqual(1, 1);
});
3 changes: 1 addition & 2 deletions back/server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

import Logger from "./lib/winston";
import connector, { waitForDbServer } from "./database/connector";
import express from "express";
Expand Down Expand Up @@ -99,4 +98,4 @@ if (require.main === module) {
startServer();
} else {
logger.log(`debug`, `required as a module`);
}
}

0 comments on commit 27a9a3c

Please sign in to comment.