Skip to content

Commit a88b360

Browse files
committed
Added a new CONTRIBUTING file with some instructions
1 parent 62417ca commit a88b360

File tree

2 files changed

+21
-18
lines changed

2 files changed

+21
-18
lines changed

CONTRIBUTING.ms

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Contributing
2+
============
3+
4+
The Symfony Demo application is an open source project. Contributions made by
5+
the community are welcome. Send us your ideas, code reviews, pull requests and
6+
feature requests to help us improve this project. All contributions must follow
7+
the [usual Symfony contribution requirements](http://symfony.com/doc/current/contributing/index.html).
8+
9+
Web Assets Management
10+
---------------------
11+
12+
This project manages its web assets in a special way to allow them to work
13+
without configuring any option, installing any tool or executing any command.
14+
If your contribution changes CSS styles or JavaScript code in any way, make
15+
sure to regenerate the `web/css/app.css` and `web/js/app.js` files. To do so,
16+
uncomment the Assetic blocks in the `app/Resources/views/base.html.twig` and
17+
execute the following command:
18+
19+
```bash
20+
$ php app/console assetic:dump --no-debug
21+
```

README.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -58,21 +58,3 @@ terminal.
5858
> If you're using PHP 5.3, configure your web server to point at the `web/`
5959
> directory of the project. For more details, see:
6060
> 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)