Skip to content

Commit

Permalink
[MRG] Merge pull request #240 from realsec/import-csv-events
Browse files Browse the repository at this point in the history
basic csv events file import (with default options)
  • Loading branch information
whikernel authored May 22, 2023
2 parents ca3516f + afda599 commit 9bcdcbd
Show file tree
Hide file tree
Showing 12 changed files with 381 additions and 85 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.1.0-beta-2
current_version = 2.1.0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>.*)-(?P<build>\d+))?
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ venv1/
nohup.out
celerybeat-schedule.db
.scannerwork/

source/app/static/assets/dist/
source/app/static/assets/img/graph/*
!source/app/static/assets/img/graph/*.png
!source/app/static/assets/img/graph/*.png
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<p align="center">
Incident Response Investigation System
<br>
<i>Current Version v2.1.0-beta-2</i>
<i>Current Version v2.1.0</i>
<br>
<a href="https://v200.beta.dfir-iris.org">Online Demonstration</a>
</p>
Expand Down Expand Up @@ -52,7 +52,7 @@ git clone https://github.com/dfir-iris/iris-web.git
cd iris-web

# Checkout to the last tagged version
git checkout v2.1.0-beta-2
git checkout v2.1.0

# Copy the environment file
cp .env.model .env
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ services:
build:
context: docker/db
container_name: iriswebapp_db
image: iriswebapp_db:v2.1.0-beta-2
image: iriswebapp_db:v2.1.0
restart: always
# Used for debugging purposes, should be deleted for production
ports:
Expand All @@ -48,7 +48,7 @@ services:
build:
context: .
dockerfile: docker/webApp/Dockerfile
image: iriswebapp_app:v2.1.0-beta-2
image: iriswebapp_app:v2.1.0
container_name: iriswebapp_app
command: ['nohup', './iris-entrypoint.sh', 'iriswebapp']
volumes:
Expand Down Expand Up @@ -86,7 +86,7 @@ services:
build:
context: .
dockerfile: docker/webApp/Dockerfile
image: iriswebapp_app:v2.1.0-beta-2
image: iriswebapp_app:v2.1.0
container_name: iriswebapp_worker
command: ['./wait-for-iriswebapp.sh', 'app:8000', './iris-entrypoint.sh', 'iris-worker']
volumes:
Expand Down Expand Up @@ -122,7 +122,7 @@ services:
args:
NGINX_CONF_GID: 1234
NGINX_CONF_FILE: nginx.conf
image: iriswebapp_nginx:v2.1.0-beta-2
image: iriswebapp_nginx:v2.1.0
container_name: iriswebapp_nginx
environment:
- IRIS_UPSTREAM_SERVER
Expand Down
Loading

0 comments on commit 9bcdcbd

Please sign in to comment.