Skip to content

Commit

Permalink
article(update-environment-docker-of-app-symfony-vue)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grevin committed Feb 24, 2018
1 parent 896f4e3 commit 7387cd5
Show file tree
Hide file tree
Showing 84 changed files with 3,587 additions and 2,723 deletions.
23 changes: 23 additions & 0 deletions .env.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# APP
APP_DIR=/var/www/symfony

# SYMFONY
APP_ENV=dev
APP_DEBUG=1
APP_SECRET=

# NODE
NODE_ENV=dev

# DATABASE
POSTGRES_HOST=postgres
POSTGRES_DB=
POSTGRES_USER=
POSTGRES_PASSWORD=
POSTGRES_PORT=5432

# PORT WEB
WEB_PORT=81

#REDIS
REDIS_HOST=redis
36 changes: 14 additions & 22 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,36 +1,28 @@
### IDE
.idea/

### Environement
### Environment
.env

### Cache, session files and logs (Symfony3)
/var/cache/*
/var/logs/*
!var/cache/.gitkeep
!var/logs/.gitkeep
### Cache, session files and logs (Symfony4)
/var/

### Managed by Composer
/var/bootstrap.php.cache
/vendor/

### Assets and user uploads
/web/bundles/
/web/uploads/

### PHPUnit
/phpunit.xml
### Symfony : Assets and user uploads
/public/bundles/
/public/uploads/

### NodeJS - NPM - YARN
node_modules/
npm-debug.log*
yarn-debug.log*
npm-debug.log
yarn-error.log*
coverage/

### Front
src/AppBundle/Resources/public/js/
src/AppBundle/Resources/public/css/
public/build/

### Build data
/build/
### symfony/phpunit-bridge
.phpunit
/phpunit.xml

### IDE
.idea/
7 changes: 0 additions & 7 deletions app/.htaccess

This file was deleted.

7 changes: 0 additions & 7 deletions app/AppCache.php

This file was deleted.

57 changes: 0 additions & 57 deletions app/AppKernel.php

This file was deleted.

23 changes: 0 additions & 23 deletions app/Resources/views/app.html.twig

This file was deleted.

94 changes: 0 additions & 94 deletions app/config/config.yml

This file was deleted.

28 changes: 0 additions & 28 deletions app/config/config_dev.yml

This file was deleted.

16 changes: 0 additions & 16 deletions app/config/config_prod.yml

This file was deleted.

18 changes: 0 additions & 18 deletions app/config/config_test.yml

This file was deleted.

21 changes: 0 additions & 21 deletions app/config/parameters.yml

This file was deleted.

9 changes: 0 additions & 9 deletions app/config/routing.yml

This file was deleted.

14 changes: 0 additions & 14 deletions app/config/routing_dev.yml

This file was deleted.

Loading

0 comments on commit 7387cd5

Please sign in to comment.