Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
skeleton-application
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lib
unicaen
skeleton-application
Commits
a57b2359
Commit
a57b2359
authored
Dec 16, 2020
by
Bertrand Gauthier
Browse files
Options
Downloads
Patches
Plain Diff
install.sh : suppression des commandes déportées vers le composer.json.
parent
b3fe1c40
No related branches found
No related tags found
No related merge requests found
Pipeline
#8885
passed
Dec 16, 2020
Stage: publish
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
install.sh
+0
-18
0 additions, 18 deletions
install.sh
with
0 additions
and
18 deletions
install.sh
+
0
−
18
View file @
a57b2359
#!/usr/bin/env bash
#!/usr/bin/env bash
#
# This script runs required operations in order to set up the application.
#
# Composer install
# Composer install
composer
install
--no-dev
--no-suggest
--optimize-autoloader
composer
install
--no-dev
--no-suggest
--optimize-autoloader
# mpdf/mpdf/ttfontdata dir access
#chown -R www-data:root vendor/mpdf/mpdf/ttfontdata && chmod -R 770 vendor/mpdf/mpdf/ttfontdata
# Répertoire d'upload par défaut
#mkdir -p upload && chown -R www-data:root upload && chmod -R 770 upload
# Répertoires de travail de Doctrine
mkdir
-p
data/cache
&&
chmod
-R
777 data/cache
mkdir
-p
data/DoctrineModule/cache
&&
chmod
-R
777 data/DoctrineModule/cache
mkdir
-p
data/DoctrineORMModule/Proxy
&&
chmod
-R
777 data/DoctrineORMModule/Proxy
rm
-rf
data/cache/
*
rm
-rf
data/DoctrineModule/cache/
*
rm
-rf
data/DoctrineORMModule/Proxy/
*
# Commandes Doctrine
# Commandes Doctrine
vendor/bin/doctrine-module orm:clear-cache:query
vendor/bin/doctrine-module orm:clear-cache:query
vendor/bin/doctrine-module orm:clear-cache:metadata
vendor/bin/doctrine-module orm:clear-cache:metadata
...
...
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