Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conf/13 setup excluding bluejay #14

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e3032f4
conf: Set up grafana image
alvarobernal2412 Sep 30, 2024
da67f28
conf: Add grafana api key generation
alvarobernal2412 Oct 2, 2024
b4922e1
fix: Include grafana APIKey in the backend
alvarobernal2412 Oct 2, 2024
5515800
fix: Handle volumes creation in Windows
alvarobernal2412 Oct 3, 2024
0f29cbc
conf: Add grafana condition and node-red network
alvarobernal2412 Oct 4, 2024
acb9a6d
conf: Add grafana user with reduced permissions
alvarobernal2412 Oct 4, 2024
f854163
fix: Update grafana port
alvarobernal2412 Oct 7, 2024
7f02272
fix: Modify Windows initial_data
FJMonteroInformatica Oct 7, 2024
ead5f1f
Merge branch 'conf/13-Setup_excluding_bluejay' of https://github.com/…
FJMonteroInformatica Oct 7, 2024
4f3e353
fix: Remove unused repos
alvarobernal2412 Oct 15, 2024
6637630
fix(docker): Update healthchecker
alvarobernal2412 Oct 22, 2024
896b315
fix: Remove unused directories
alvarobernal2412 Oct 23, 2024
1c660b1
fix: Update outdated branch
alvarobernal2412 Oct 23, 2024
68d7908
conf: Add container.json
alvarobernal2412 Oct 24, 2024
ddb350b
conf: Update image stable version
alvarobernal2412 Oct 24, 2024
5c0c0c8
fix: Add authorization header
alvarobernal2412 Oct 28, 2024
6c7578b
fix: Update backend volume
alvarobernal2412 Oct 28, 2024
2b521ca
conf: Change .env location
alvarobernal2412 Oct 28, 2024
d0f3400
conf: Change nodered image
alvarobernal2412 Oct 29, 2024
7aa5300
feat: added director and redis
alvarobernal2412 Jan 29, 2025
579f53e
feat: added registry and mongo
alvarobernal2412 Jan 30, 2025
9d0b555
chore(db)!: changed mysql to postgres
alvarobernal2412 Feb 5, 2025
f11e0c2
fix: updated unbound grafana volume
alvarobernal2412 Feb 11, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: Remove unused directories
  • Loading branch information
alvarobernal2412 committed Oct 23, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 896b315c30fc1e5752cee4bab1cb2c670ad926cc
7 changes: 5 additions & 2 deletions Windows/prepare_environment.ps1
Original file line number Diff line number Diff line change
@@ -66,15 +66,18 @@ foreach ($dir in $directories) {
# Clone repositories
Write-Host "_______________________CLONING REPOSITORIES_______________________"

git clone -b feature/33-Integrate_grafana https://github.com/statuscompliance/status-backend ..\status-backend
git clone -b develop https://github.com/statuscompliance/status-frontend ..\status-frontend
# git clone -b feature/33-Integrate_grafana https://github.com/statuscompliance/status-backend ..\status-backend
# git clone -b develop https://github.com/statuscompliance/status-frontend ..\status-frontend



# Create node-red-status directory if not exist
if (-not (Test-Path "..\node-red-status")) {
New-Item -ItemType Directory -Path "..\node-red-status" | Out-Null
}
if (-not (Test-Path "..\status-backend")) {
New-Item -ItemType Directory -Path "..\status-backend" | Out-Null
}

# Delete settings.js if exists and create new from settings_template.js
if (Test-Path "..\settings.js") {