Skip to content

Commit 793a4b5

Browse files
authored
[maint] minor dev improvements (#506)
2 parents 89a0e86 + 8e8a79c commit 793a4b5

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ AIOD_ES_TRANSPORT_PORT=9300
3535
#LOGSTASH
3636
LS_JAVA_OPTS="-Xmx256m -Xms256m"
3737
AIOD_LOGSTASH_BEATS_PORT=5044
38-
AIOD_LOGSTASH_PORT=5000
38+
AIOD_LOGSTASH_PORT=5001
3939
AIOD_LOGSTASH_API_PORT=9600
4040

4141
#NGINX

docs/contributing.md

+4
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,8 @@ These hooks help make sure formatting is more homogeneous across the project, an
9999
See the ["Developer Documentation"](developer/index.md) for the technical documentation of this project.
100100
More to be added.
101101

102+
Note that when using our convenience scripts to launch docker containers (see ["Shorthands"](hosting/index.md#shorthands)),
103+
local code changes are not mounted to the docker containers unless `USE_LOCAL_DEV` is set to `true`. You should configure this
104+
variable in your `override.env`.
105+
102106
[//]: # (## Setting up a pull request)

scripts/clean.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ DIR_DELETION=$DIR_DATA/deletion
1111
DIR_ELASTIC=$DIR_DATA/elasticsearch
1212
DIR_KEYCLOAK=$DIR_DATA/keycloak/data
1313

14-
sudo find $DIR_CONNECTORS -type f ! -name .gitkeep -delete
15-
sudo find $DIR_DELETION -type f ! -name .gitkeep -delete
16-
sudo rm -rf $DIR_MYSQL/*
14+
find $DIR_CONNECTORS -type f ! -name .gitkeep -delete
15+
find $DIR_DELETION -type f ! -name .gitkeep -delete
16+
rm -rf $DIR_MYSQL/*
1717
touch $DIR_MYSQL/.gitkeep
18-
sudo rm -rf $DIR_ELASTIC/*
19-
sudo rm -rf $DIR_KEYCLOAK/tmp
20-
sudo rm -rf $DIR_KEYCLOAK/h2
18+
rm -rf $DIR_ELASTIC/*
19+
rm -rf $DIR_KEYCLOAK/tmp
20+
rm -rf $DIR_KEYCLOAK/h2
2121
touch $DIR_ELASTIC/.gitkeep

0 commit comments

Comments
 (0)