Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gfl-app-new
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Goethes Farbenlehre
gfl-app-new
Commits
14d2c6a7
Commit
14d2c6a7
authored
3 years ago
by
Mathias Goebel
Browse files
Options
Downloads
Patches
Plain Diff
init setup
parent
f2eb5186
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.env.dist
+10
-7
10 additions, 7 deletions
.env.dist
.gitignore
+5
-0
5 additions, 0 deletions
.gitignore
config/packages/nelmio_solarium.yaml
+1
-1
1 addition, 1 deletion
config/packages/nelmio_solarium.yaml
docker-compose.yaml
+8
-1
8 additions, 1 deletion
docker-compose.yaml
with
24 additions
and
9 deletions
.env.dist
+
10
−
7
View file @
14d2c6a7
# This file is a "template" of which env vars need to be defined for your application
# Copy this file to .env file for development, create environment variables when deploying to production
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
###> symfony/framework-bundle ###
APP_ENV=dev
APP_SECRET=ffd665a7c5492ceb110881e167cd2603
...
...
@@ -10,8 +6,10 @@ APP_SECRET=ffd665a7c5492ceb110881e167cd2603
###< symfony/framework-bundle ###
###> nelmio/solarium-bundle ###
SOLR_HOST=localhost
SOLR_CORE=example
SOLR_HOST=solr
#SOLR_HOST=dev.gflsolr.sub.uni-goettingen.de
SOLR_PORT=8983
SOLR_CORE=gfl
###< nelmio/solarium-bundle ###
WEB_DOCUMENT_ROOT=/app/public/
...
...
@@ -24,4 +22,9 @@ PHP_MEMORY_LIMIT=1024M
CORS_ALLOW_ORIGIN='^https?://(localhost|127\.0\.0\.1)(:[0-9]+)?$'
###< nelmio/cors-bundle ###
MAIN_DOMAIN=https://localhost:8000
MAIN_DOMAIN=http://127.0.0.1:1745
STORAGE_ENDPOINT=http://s3.fs.gwdg.de
STORAGE_KEY=L8G27WRB04ZCIJJOJFCR
STORAGE_SECRET=OLXl3sfe3UrGyE1bP6v9RW5hCRXOlhXRId4TvIFI
STORAGE_BUCKET=gfl
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.gitignore
+
5
−
0
View file @
14d2c6a7
...
...
@@ -26,3 +26,8 @@ yarn-error.log
###> symfony/web-server-bundle ###
/.web-server-pid
###< symfony/web-server-bundle ###
###> solr
solr/gfl/data/
solr/gfloffline/data/index/write.lock
###<
\ No newline at end of file
This diff is collapsed.
Click to expand it.
config/packages/nelmio_solarium.yaml
+
1
−
1
View file @
14d2c6a7
...
...
@@ -2,7 +2,7 @@ nelmio_solarium:
endpoints
:
default
:
host
:
"
%env(SOLR_HOST)%"
#
port: "%env(SOLR_PORT)%"
port
:
"
%env(SOLR_PORT)%"
core
:
"
%env(SOLR_CORE)%"
# The following are the default parameters for Solarium client:
# scheme: http
...
...
This diff is collapsed.
Click to expand it.
docker-compose.yaml
+
8
−
1
View file @
14d2c6a7
...
...
@@ -5,7 +5,9 @@ services:
volumes
:
-
./solr:/var/solr/data/solr
ports
:
-
'
9990:8983'
-
'
8983:8983'
networks
:
-
default
web
:
image
:
webdevops/php-apache-dev:7.4
env_file
:
...
...
@@ -17,3 +19,8 @@ services:
links
:
-
solr
working_dir
:
/app
networks
:
-
default
networks
:
default
:
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment