Add package dependencies and project settings page
Package Dependencies: - Add artifact dependency management system - Add dependency API endpoints (get, resolve, reverse) - Add ensure file parsing for declaring dependencies - Add circular dependency and conflict detection - Add frontend dependency visualization with graph modal - Add migration for artifact_dependencies table Project Settings Page (#65): - Add dedicated settings page for project admins - General settings section (description, visibility) - Access management section (moved from project page) - Danger zone with inline delete confirmation - Add Settings button to project page header
This commit is contained in:
@@ -69,6 +69,8 @@ spec:
|
||||
containerPort: {{ .Values.orchard.server.port }}
|
||||
protocol: TCP
|
||||
env:
|
||||
- name: ORCHARD_ENV
|
||||
value: {{ .Values.orchard.env | default "development" | quote }}
|
||||
- name: ORCHARD_SERVER_HOST
|
||||
value: {{ .Values.orchard.server.host | quote }}
|
||||
- name: ORCHARD_SERVER_PORT
|
||||
|
||||
@@ -85,6 +85,7 @@ tolerations: []
|
||||
affinity: {}
|
||||
|
||||
orchard:
|
||||
env: "development" # Allows seed data for testing
|
||||
server:
|
||||
host: "0.0.0.0"
|
||||
port: 8080
|
||||
|
||||
@@ -88,6 +88,7 @@ tolerations: []
|
||||
affinity: {}
|
||||
|
||||
orchard:
|
||||
env: "production" # Disables seed data
|
||||
server:
|
||||
host: "0.0.0.0"
|
||||
port: 8080
|
||||
|
||||
@@ -90,6 +90,7 @@ affinity: {}
|
||||
|
||||
# Orchard server configuration
|
||||
orchard:
|
||||
env: "development" # Allows seed data for testing
|
||||
server:
|
||||
host: "0.0.0.0"
|
||||
port: 8080
|
||||
|
||||
Reference in New Issue
Block a user