Skip to content
This repository has been archived by the owner on Feb 12, 2025. It is now read-only.

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed Sep 2, 2018
0 parents commit 191fdea
Show file tree
Hide file tree
Showing 59 changed files with 3,255 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/issue_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# EDIT THIS TITLE BEFORE POSTING. Use this template for bug reports. If you'd like to request a feature, please be as descriptive as possible and delete the template except the first section (Request Type)

### Request Type
(select Bug or Feature Request and **remove this part**)
Bug / Feature Request

### Work Environment

| Question | Answer
|---------------------------|--------------------
| OS version (server) | Debian, Ubuntu, CentOS, RedHat, ...
| OS version (client) | XP, Seven, 10, Ubuntu, ...
| TheHive version / git hash | 3.x, hash of the commit
| Package Type | RPM, DEB, Docker, Binary, From source
| Browser type & version | If applicable


### Problem Description
Describe the problem/bug as clearly as possible.

### Steps to Reproduce
1. step 1
1. step 2
1. step 3...

### Possible Solutions
(keep this section if you have suggestions on how to solve the problem. **Otherwise delete it**)

### Complementary information
(add anything that can help identifying the problem such as **log** excerpts, **screenshots**, **configuration dumps** etc.)
1 change: 1 addition & 0 deletions .github_changelog_generator
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
enhancement_labels=enhancement, Enhancement,feature request
30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
logs
bin

# sbt specific
.cache
.history
.lib/
dist/*
target/
lib_managed/
src_managed/
project/boot/
project/plugins/project/
RUNNING_PID
.cache-main
.cache-tests
sbt-launch.jar

# Eclipse
.project
.target
.settings
tmp
.classpath

# IntelliJ IDEA
/.idea
/*.iml
/out
/.idea_modules
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "ScalliGraph"]
path = ScalliGraph
url = git@github.com:TheHive-Project/ScalliGraph.git
33 changes: 33 additions & 0 deletions .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#align = more # For pretty alignment.
#maxColumn = 100 # For my wide 30" display.
#align {
#openParenCallSite = false
#openParenDefnSite = false
#}
#rewrite.rules = [
#sortimports
#]
#align.tokens = [
#{
#code = "⇒"
#owner = Case
# }
#]
style = defaultWithAlign
maxColumn = 150

align.openParenCallSite = false
align.openParenDefnSite = false

rewrite.rules = [
SortImports
RedundantBraces
RedundantParens
PreferCurlyFors
]
rewrite.redundantBraces.stringInterpolation = true
rewriteTokens {
"=>" : "⇒"
"<-" : "←"
"->": "→"
}
17 changes: 17 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Authors
-------

* Nabil Adouani <nabil@thehive-project.org>
* Thomas Franco <toom@thehive-project.org>
* Saâd Kadhi <saad@thehive-project.org> (project leader)
* Jérôme Leonard <jerome@thehive-project.org>

Contributors
------------

* CERT Banque de France (CERT-BDF)

Copyright (C) 2017-2018 Nabil Adouani
Copyright (C) 2014-2018 Thomas Franco
Copyright (C) 2014-2018 Saâd Kadhi
Copyright (C) 2014-2018 Jérôme Leonard
Loading

0 comments on commit 191fdea

Please sign in to comment.