Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Backend - Engine
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
279
Merge Requests
35
CI / CD
Security & Compliance
Packages
Analytics
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Backend - Engine
Compare Revisions
a83814509c47e58707a20b2434413c8515d54b83...4fb9ac8924a6709a7751317ff66ca73478d40b2d
Source
4fb9ac8924a6709a7751317ff66ca73478d40b2d
...
Target
a83814509c47e58707a20b2434413c8515d54b83
Compare
Commits (2)
Local stack tweaks
· f5553f1e
Emiliano Balbuena
authored
26 minutes ago
f5553f1e
Merge branch 'chore/local-infra-tweaks' into 'master'
· 4fb9ac89
Xander Miller
authored
26 minutes ago
Local stack tweaks See merge request
!466
4fb9ac89
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
48 additions
and
1 deletion
+48
-1
.gitattributes
0 → 100644
View file @
4fb9ac89
# Define the line ending behavior of the different file extensions
# Set default behaviour, in case users don't have core.autocrlf set.
* text=auto
* text eol=lf
# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
*.php text
*.default text
*.ctp text
*.md text
*.po text
*.js text
*.css text
*.ini text
*.txt text
*.xml text
# Declare files that will always have CRLF line endings on checkout.
*.bat eol=crlf
*.ps1 eol=crlf
# Declare files that will always have LF line endings on checkout.
*.pem eol=lf
*.sh eol=lf
*.cql eol=lf
containers/** eol=lf
# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.gif binary
*.ico binary
*.mo binary
# Remove files for archives generated using `git archive`
appveyor.yml export-ignore
CONTRIBUTING.md export-ignore
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore
Makefile export-ignore
phpunit.xml.dist export-ignore
.travis.yml export-ignore
tests/test_app export-ignore
tests/TestCase export-ignore
This diff is collapsed.
.gitignore
View file @
4fb9ac89
...
...
@@ -28,3 +28,4 @@ coverage
!/.gitlab
composer.phar
settings.php-*.bak
!/.gitattributes
This diff is collapsed.
settings.example.php
View file @
4fb9ac89
...
...
@@ -585,7 +585,7 @@ $CONFIG->set('gitlab', [
$CONFIG
->
set
(
'pro'
,
[
'handler'
=>
''
,
'root_domains'
=>
[
'minds.com'
,
'www.minds.com'
,
'localhost'
],
'root_domains'
=>
[
'minds.com'
,
'www.minds.com'
,
'localhost'
,
'localhost:8080'
,
'localhost:4200'
],
'subdomain_suffix'
=>
'minds.com'
,
'dynamodb_table_name'
=>
'traefik'
,
]);
...
...
This diff is collapsed.