Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

symfony gitignore

# Cache and logs (Symfony2)
/app/cache/*
/app/logs/*
!app/cache/.gitkeep
!app/logs/.gitkeep

# Email spool folder
/app/spool/*

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

# Logs (Symfony4)
/var/log/*
!var/log/.gitkeep

# Parameters
/app/config/parameters.yml
/app/config/parameters.ini

# Managed by Composer
/app/bootstrap.php.cache
/var/bootstrap.php.cache
/bin/*
!bin/console
!bin/symfony_requirements
/vendor/

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

# PHPUnit
/app/phpunit.xml
/phpunit.xml

# Build data
/build/

# Composer PHAR
/composer.phar

# Backup entities generated with doctrine:generate:entities command
**/Entity/*~

# Embedded web-server pid file
/.web-server-pid
Comment

PREVIOUS NEXT
Code Example
Shell :: bash modify file text 
Shell :: how to check whether a string contains a special character or not in bash 
Shell :: docker dir log linux 
Shell :: gitignore files that are already tracked 
Shell :: search a word in a text using grep in Linux 
Shell :: git ls-files --others -i --exclude-standard 
Shell :: astro with tailwind setup 
Shell :: install blender on Debian Linux 
Shell :: how to apply changes in a single file from stash 
Shell :: gcc info linux 
Shell :: linux service start 
Shell :: ruby install on fedora 
Shell :: find file modified in last minutes 
Shell :: mkdir -p parameter 
Shell :: pip install webview error 
Shell :: ssh current directory 
Shell :: git pull with username and password linux 
Shell :: jq filter array 
Shell :: how to image an entire disk on linux 
Shell :: how to chanbge port number on centos8 
Shell :: replace whitespace with newline 
Shell :: ubuntu 20.04 ifconfig public ip address 
Shell :: comment installer virtualbox sur kali linux 
Shell :: what is bin/bash 
Shell :: delete a folder from git 
Shell :: svg to png convert imagemagick 
Shell :: copy to clipboard while ssh into another terminal 
Shell :: how to view the list of your environments in your terminal or Anaconda prompt 
Shell :: echo to add line to file 
Shell :: git lfs all files in folder 
ADD CONTENT
Topic
Content
Source link
Name
4+1 =