spabloramirez
1/27/2016 - 2:40 PM

#MarkDown template.md

Project

Description: What does this project do and who does it serve?

Project Setup

How do I, as a developer, start working on the project?

  1. What dependencies does it have (where are they expressed) and how do I install them?
  2. How can I see the project working before I change anything?

Testing

How do I run the project's automated tests?

Unit Tests

  1. rake spec

Integration Tests

  1. Run other local services / provide credentials for external services.
  2. rake spec:integration

Deploying

How to setup the deployment environment

  • Required heroku addons, packages, or chef recipes.
  • Required environment variables or credentials not included in git.
  • Monitoring services and logging.

How to deploy

Troubleshooting & Useful Tools

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.

Contributing changes

  • Internal git workflow
  • Pull request guidelines
  • Tracker project
  • Google group
  • irc channel
  • "Please open github issues"

License

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

Symfony Secure

Descripcion del proyecto .....

Configuración

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