Skip to content

Commit 62417ca

Browse files
committed
Added a note about contributing to this project
1 parent 11ea2bf commit 62417ca

File tree

1 file changed

+22
-3
lines changed

1 file changed

+22
-3
lines changed

README.md

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,31 @@ $ cd symfony-demo/
4848
$ php app/console server:run
4949
```
5050

51-
This command will start a web server for the Symfony application. Now you can access
52-
the application in your browser at <http://localhost:8000>. You can stop the built-in
53-
web server by pressing `Ctrl + C` while you're in the terminal.
51+
This command will start a web server for the Symfony application. Now you can
52+
access the application in your browser at <http://localhost:8000>. You can
53+
stop the built-in web server by pressing `Ctrl + C` while you're in the
54+
terminal.
5455

5556
> **NOTE**
5657
>
5758
> If you're using PHP 5.3, configure your web server to point at the `web/`
5859
> directory of the project. For more details, see:
5960
> http://symfony.com/doc/current/cookbook/configuration/web_server_configuration.html
61+
62+
Contributing
63+
------------
64+
65+
Contributions to this project are welcome. Send us your ideas, code reviews,
66+
pull requests and feature requests to help us improve this project. All
67+
contributions must follow the [usual Symfony contribution requirements](http://symfony.com/doc/current/contributing/index.html).
68+
69+
This project manages its web assets in a special way to allow them to work
70+
without configuring any option, installing any tool or executing any command.
71+
If your contribution changes CSS styles or JavaScript code in any way, make
72+
sure to regenerate the `web/css/app.css` and `web/js/app.js` files. To do so,
73+
uncomment the Assetic blocks in the `app/Resources/views/base.html.twig` and
74+
execute the following command:
75+
76+
```bash
77+
$ php app/console assetic:dump --no-debug
78+
```

0 commit comments

Comments
 (0)