Skip to content

Commit ebca730

Browse files
committed
Feature Freeze for RomHack 2022
0 parents  commit ebca730

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+5900
-0
lines changed

.env_example

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
NEO4J_URL="neo4j://localhost:7687"
2+
PASSWORD=nuvola
3+
NEO4J_AUTH="neo4j/${PASSWORD}"

.github/ISSUE_TEMPLATE/bug_report.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG]"
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Execution of command-one..
16+
2. Navigate on...
17+
18+
**Expected behavior**
19+
A clear and concise description of what you expected to happen.
20+
21+
**Screenshots**
22+
If applicable, add screenshots to help explain your problem.
23+
24+
**Desktop (please complete the following information):**
25+
- OS and CPU Architecture: [e.g. iOS]
26+
- Version of Neo4j
27+
- Version of Go
28+
29+
**Additional context**
30+
Add any other context about the problem here.
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[FEAT]"
5+
labels: enhancement, help wanted
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/workflows/golanci-lint.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: golangci-lint
2+
on:
3+
push:
4+
tags:
5+
- v*
6+
branches:
7+
- master
8+
- dev
9+
pull_request:
10+
permissions:
11+
contents: read
12+
pull-requests: read
13+
14+
jobs:
15+
golangci:
16+
name: lint
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/setup-go@v3
20+
with:
21+
go-version: 1.18
22+
- uses: actions/checkout@v3
23+
- name: golangci-lint
24+
uses: golangci/golangci-lint-action@v3
25+
with:
26+
version: latest
27+
args: --timeout 100s --skip-dirs="(^|/)assets($|/)"

.github/workflows/gosec.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Run Gosec
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- dev
7+
pull_request:
8+
branches:
9+
- master
10+
jobs:
11+
gosec:
12+
runs-on: ubuntu-latest
13+
env:
14+
GO111MODULE: on
15+
steps:
16+
- name: Checkout Source
17+
uses: actions/checkout@v3
18+
- name: Run Gosec Security Scanner
19+
uses: securego/gosec@master
20+
with:
21+
args: -exclude-dir=assets -no-fail ./...

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
*.code-workspace
2+
nuvola
3+
*.json
4+
.env
5+
dist
6+
*.log
7+
backup/

.vscode/extensions.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["golang.go", "vscode-icons-team.vscode-icons", "eamodio.gitlens", "amazonwebservices.aws-toolkit-vscode"]
3+
}

0 commit comments

Comments
 (0)