hectorruiz9 commited on
Commit
80d41c9
·
verified ·
1 Parent(s): 3b008d3

Add 7 files

Browse files
Files changed (3) hide show
  1. docker-compose.yml +12 -0
  2. images/1000077535.jpg +3 -0
  3. orbital-sync.yml +21 -0
docker-compose.yml ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: '3.9'
2
+
3
+ services:
4
+ hectron-psi:
5
+ build: .
6
+ container_name: hectron-psi-omega16
7
+ volumes:
8
+ - ./boveda:/hectron-psi/boveda
9
+ - ./.env:/hectron-psi/.env
10
+ tty: true
11
+ environment:
12
+ - HECTRON_MODE=RUBEDO
images/1000077535.jpg ADDED

Git LFS Details

  • SHA256: 8c8f04d39cee7b5cff92152e9ba06339f8bef44cd90c764e73f0f0c9b2a47e81
  • Pointer size: 131 Bytes
  • Size of remote file: 278 kB
orbital-sync.yml ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: "HECTRON ORBITAL SYNC"
2
+
3
+ on:
4
+ push:
5
+ branches: [ "main" ]
6
+
7
+ jobs:
8
+ security-audit:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+ - name: "Security Guardian Scan"
13
+ run: echo "🛡️ Escaneando secretos y vulnerabilidades..."
14
+ # Aquí iría snyk o sonarcloud
15
+
16
+ deploy-core:
17
+ needs: security-audit
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - name: "Deploy HectronNexus"
21
+ run: echo "🚀 Desplegando Núcleo a Producción..."