Description: What does this project do and who does it serve?
How do I, as a developer, start working on the project?
How do I run the project's automated tests?
rake spec
rake spec:integration
Examples of common tasks
e.g.
- How to make curl requests while authenticated via oauth.
- How to monitor background jobs.
- How to run the app through a proxy.
project
│ README.md
│ file001.txt
│
|----folder1
│ file011.txt
│ file012.txt
│
├───subfolder1
│ │ file111.txt
│ │ file112.txt
│ │ ...
│
└───folder2
│ file021.txt
│ file022.txt
project
| README.md
| file001.txt
|----folder1
| |
| |----subfolder1
| | file12.txt
| | file12.txt
| | ....
|
|----folder2
project
|README.md
|file001.txt
|--folder1
| |--subfolder1
| file12.txt
| file12.txt|
|--folder2
.
├── build # Compiled files (alternatively `dist`)
├── docs # Documentation files (alternatively `doc`)
├── src # Source files (alternatively `lib` or `app`)
├── test # Automated tests (alternatively `spec` or `tests`)
├── tools # Tools and utilities
├── LICENSE
└── README.md
Symfony
|--app
|--SiniestroBundle
|--src
|--web
Descripcion del proyecto .....
1. Clonar repositorio
$ git clone http://autobox@bitbucket.intermundial.xxi:7990/scm/im/symfonysecure.git
2. Instalar dependencias
$ cd symfonysecure/
$ composer.phar install
3. Establecer permisos
$ HTTPDUSER=`ps axo user,comm | grep -E '[a]pache|[h]ttpd|[_]www|[w]ww-data|[n]ginx' | grep -v root | head -1 | cut -d\ -f1`
$ setfacl -R -m u:"$HTTPDUSER":rwX -m u:`whoami`:rwX app/cache app/logs
$ setfacl -dR -m u:"$HTTPDUSER":rwX -m u:`whoami`:rwX app/cache app/logs