-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a4adb49
commit c3ab691
Showing
121 changed files
with
515 additions
and
535 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/config/conductor.yaml | ||
/config/packages/conductor.yaml | ||
/config/dirigent.yaml | ||
/config/packages/dirigent.yaml | ||
/storage/ | ||
/var/ | ||
/vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# In all environments, the following files are loaded if they exist, | ||
# the latter taking precedence over the former: | ||
# | ||
# * .env.conductor contains default values for the environment variables needed by the app | ||
# * .env.conductor.local uncommitted file with local overrides | ||
# * .env.conductor.$APP_ENV committed environment-specific defaults | ||
# * .env.conductor.$APP_ENV.local uncommitted environment-specific overrides | ||
# * .env.dirigent contains default values for the environment variables needed by the app | ||
# * .env.dirigent.local uncommitted file with local overrides | ||
# * .env.dirigent.$APP_ENV committed environment-specific defaults | ||
# * .env.dirigent.$APP_ENV.local uncommitted environment-specific overrides | ||
# | ||
# Real environment variables win over .env files. | ||
# | ||
|
@@ -28,7 +28,7 @@ APP_SECRET=e52f905e642cf4299efe685742c4b171 | |
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db" | ||
# DATABASE_URL="mysql://app:[email protected]:3306/app?serverVersion=8.0.32&charset=utf8mb4" | ||
# DATABASE_URL="mysql://app:[email protected]:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4" | ||
DATABASE_URL="postgresql://conductor:[email protected]:5432/conductor?serverVersion=16&charset=utf8" | ||
DATABASE_URL="postgresql://dirigent:[email protected]:5432/dirigent?serverVersion=16&charset=utf8" | ||
###< doctrine/doctrine-bundle ### | ||
|
||
###> sentry/sentry-symfony ### | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ | |
|
||
import './bootstrap'; | ||
|
||
import './stylesheets/conductor-theme.css'; | ||
import './stylesheets/dashboard-theme.css'; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
:root { | ||
--dirigent-primary: #22181C; | ||
|
||
--color-primary: var(--dirigent-primary); | ||
|
||
--page-login-bg: var(--dirigent-primary); | ||
|
||
--sidebar-bg: var(--color-primary); | ||
--sidebar-logo-color: var(--true-gray-200); | ||
--sidebar-menu-color: var(--true-gray-200); | ||
--sidebar-menu-header-color: var(--gray-400); | ||
--sidebar-menu-icon-color: var(--gray-400); | ||
--sidebar-menu-active-item-bg: #543B45; | ||
--sidebar-menu-active-item-color: #FFB3C1; | ||
|
||
--resize-handler-hover-bg: #835D6C; | ||
|
||
--code-color: var(--text-color); | ||
} | ||
|
||
.ea-dark-scheme { | ||
--dirigent-primary: #543B45; | ||
--dirigent-primary-heavy: #835D6C; | ||
--dirigent-primary-subtle: #22181C; | ||
--dirigent-secondary: #FFB3C1; | ||
--dirigent-secondary-subtle: #dc8494; | ||
--dirigent-body-bg: #111517; | ||
--dirigent-body-bg-subtle: rgb(25, 31, 34); | ||
--dirigent-body-bg-subtle-rgb: 25, 31, 34; | ||
|
||
--color-primary: var(--dirigent-primary); | ||
|
||
--body-bg: var(--dirigent-body-bg); | ||
|
||
--page-login-bg: var(--dirigent-body-bg); | ||
--page-login-form-bg: var(--dirigent-body-bg-subtle); | ||
|
||
--sidebar-bg: var(--dirigent-primary-subtle); | ||
--sidebar-logo-color: var(--true-gray-200); | ||
--sidebar-menu-color: var(--true-gray-200); | ||
--sidebar-menu-header-color: var(--gray-400); | ||
--sidebar-menu-icon-color: var(--gray-400); | ||
--sidebar-menu-active-item-bg: var(--dirigent-primary); | ||
--sidebar-menu-active-item-color: var(--dirigent-secondary); | ||
|
||
--resize-handler-hover-bg: var(--dirigent-primary); | ||
|
||
--dropdown-settings-active-item-color: var(--dirigent-secondary); | ||
|
||
--button-primary-bg: var(--dirigent-primary); | ||
|
||
--link-color: var(--dirigent-secondary-subtle); | ||
--link-hover-color: var(--dirigent-secondary); | ||
|
||
--code-color: var(--text-color); | ||
|
||
--bs-border-color: var(--dirigent-primary); | ||
} | ||
|
||
.nav-pills { | ||
--bs-nav-pills-link-active-bg: var(--color-primary); | ||
} | ||
|
||
.ea-dark-scheme .bg-body-secondary { | ||
--bs-secondary-bg-rgb: var(--dirigent-body-bg-subtle-rgb); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.