@@ -48,12 +48,31 @@ $ cd symfony-demo/
48
48
$ php app/console server:run
49
49
```
50
50
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.
54
55
55
56
> ** NOTE**
56
57
>
57
58
> If you're using PHP 5.3, configure your web server to point at the ` web/ `
58
59
> directory of the project. For more details, see:
59
60
> 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