From bec75018bed7ca29ea52b3a8dd0d455835ffe045 Mon Sep 17 00:00:00 2001 From: Polonkai Gergely Date: Tue, 21 Aug 2012 17:25:08 +0200 Subject: [PATCH] Modified file structure before uploading to GitHub Signed-off-by: Gergely Polonkai --- .gitignore | 34 +++++- README.md | 176 +------------------------------ Symfony2-README.md | 174 ++++++++++++++++++++++++++++++ app/cache/.gitignore | 2 - app/logs/.gitignore | 2 - spool/.gitignore | 2 - app/.gitignore => spool/.gitkeep | 0 vendor/.gitignore | 2 - web/bundles/.gitignore | 2 - web/css/.gitignore | 2 - web/js/.gitignore | 4 - web/upload/.gitignore | 2 - web/upload/.gitkeep | 0 13 files changed, 210 insertions(+), 192 deletions(-) create mode 100644 Symfony2-README.md delete mode 100644 app/cache/.gitignore delete mode 100644 app/logs/.gitignore delete mode 100644 spool/.gitignore rename app/.gitignore => spool/.gitkeep (100%) delete mode 100644 vendor/.gitignore delete mode 100644 web/bundles/.gitignore delete mode 100644 web/css/.gitignore delete mode 100644 web/js/.gitignore delete mode 100644 web/upload/.gitignore create mode 100644 web/upload/.gitkeep diff --git a/.gitignore b/.gitignore index 9ef66e7..ba26fe3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,36 @@ +# Bootstrap +app/bootstrap* + +# Symfony directories +vendor/* +app/logs/* +app/cache/* +web/uploads/* +web/bundles/* + +# Configuration files +app/config/parameters.ini + +# Composer related files composer.lock vendor/composer/installed.json + +# Assetic-generated .js and .css files +web/js/* +web/css/* + +# Project's upload directory +web/upload/* + +# Spool directory +spool/* + +# Backup files *~ -/nbproject/private/ \ No newline at end of file + +#NetBeans private files +/nbproject/private/ + +# This should be the last line +# .gitkeep files +!.gitkeep diff --git a/README.md b/README.md index 3d85c92..2a4ba62 100644 --- a/README.md +++ b/README.md @@ -1,174 +1,4 @@ -Symfony Standard Edition -======================== +kekrozsak +========= -Welcome to the Symfony Standard Edition - a fully-functional Symfony2 -application that you can use as the skeleton for your new applications. - -This document contains information on how to download, install, and start -using Symfony. For a more detailed explanation, see the [Installation][1] -chapter of the Symfony Documentation. - -1) Installing the Standard Edition ----------------------------------- - -When it comes to installing the Symfony Standard Edition, you have the -following options. - -### Use Composer (*recommended*) - -As Symfony uses [Composer][2] to manage its dependencies, the recommended way -to create a new project is to use it. - -If you don't have Composer yet, download it following the instructions on -http://getcomposer.org/ or just run the following command: - - curl -s http://getcomposer.org/installer | php - -Then, use the `create-project` command to generate a new Symfony application: - - php composer.phar create-project symfony/framework-standard-edition path/to/install - -Composer will install Symfony and all its dependencies under the -`path/to/install` directory. - -### Download an Archive File - -To quickly test Symfony, you can also download an [archive][3] of the Standard -Edition and unpack it somewhere under your web server root directory. - -If you downloaded an archive "without vendors", you also need to install all -the necessary dependencies. Download composer (see above) and run the -following command: - - php composer.phar install - -2) Checking your System Configuration -------------------------------------- - -Before starting coding, make sure that your local system is properly -configured for Symfony. - -Execute the `check.php` script from the command line: - - php app/check.php - -Access the `config.php` script from a browser: - - http://localhost/path/to/symfony/app/web/config.php - -If you get any warnings or recommendations, fix them before moving on. - -3) Browsing the Demo Application --------------------------------- - -Congratulations! You're now ready to use Symfony. - -From the `config.php` page, click the "Bypass configuration and go to the -Welcome page" link to load up your first Symfony page. - -You can also use a web-based configurator by clicking on the "Configure your -Symfony Application online" link of the `config.php` page. - -To see a real-live Symfony page in action, access the following page: - - web/app_dev.php/demo/hello/Fabien - -4) Getting started with Symfony -------------------------------- - -This distribution is meant to be the starting point for your Symfony -applications, but it also contains some sample code that you can learn from -and play with. - -A great way to start learning Symfony is via the [Quick Tour][4], which will -take you through all the basic features of Symfony2. - -Once you're feeling good, you can move onto reading the official -[Symfony2 book][5]. - -A default bundle, `AcmeDemoBundle`, shows you Symfony2 in action. After -playing with it, you can remove it by following these steps: - - * delete the `src/Acme` directory; - - * remove the routing entries referencing AcmeBundle in - `app/config/routing_dev.yml`; - - * remove the AcmeBundle from the registered bundles in `app/AppKernel.php`; - - * remove the `web/bundles/acmedemo` directory; - - * remove the `security.providers`, `security.firewall.login` and - `security.firewall.secured_area` entries in the `security.yml` file or - tweak the security configuration to fit your needs. - -What's inside? ---------------- - -The Symfony Standard Edition is configured with the following defaults: - - * Twig is the only configured template engine; - - * Doctrine ORM/DBAL is configured; - - * Swiftmailer is configured; - - * Annotations for everything are enabled. - -It comes pre-configured with the following bundles: - - * **FrameworkBundle** - The core Symfony framework bundle - - * [**SensioFrameworkExtraBundle**][6] - Adds several enhancements, including - template and routing annotation capability - - * [**DoctrineBundle**][7] - Adds support for the Doctrine ORM - - * [**TwigBundle**][8] - Adds support for the Twig templating engine - - * [**SecurityBundle**][9] - Adds security by integrating Symfony's security - component - - * [**SwiftmailerBundle**][10] - Adds support for Swiftmailer, a library for - sending emails - - * [**MonologBundle**][11] - Adds support for Monolog, a logging library - - * [**AsseticBundle**][12] - Adds support for Assetic, an asset processing - library - - * [**JMSSecurityExtraBundle**][13] - Allows security to be added via - annotations - - * [**JMSDiExtraBundle**][14] - Adds more powerful dependency injection - features - - * **WebProfilerBundle** (in dev/test env) - Adds profiling functionality and - the web debug toolbar - - * **SensioDistributionBundle** (in dev/test env) - Adds functionality for - configuring and working with Symfony distributions - - * [**SensioGeneratorBundle**][15] (in dev/test env) - Adds code generation - capabilities - - * **AcmeDemoBundle** (in dev/test env) - A demo bundle with some example - code - -Enjoy! - -[1]: http://symfony.com/doc/2.1/book/installation.html -[2]: http://getcomposer.org/ -[3]: http://symfony.com/download -[4]: http://symfony.com/doc/2.1/quick_tour/the_big_picture.html -[5]: http://symfony.com/doc/2.1/ -[6]: http://symfony.com/doc/2.1/bundles/SensioFrameworkExtraBundle/index.html -[7]: http://symfony.com/doc/2.1/book/doctrine.html -[8]: http://symfony.com/doc/2.1/book/templating.html -[9]: http://symfony.com/doc/2.1/book/security.html -[10]: http://symfony.com/doc/2.1/cookbook/email.html -[11]: http://symfony.com/doc/2.1/cookbook/logging/monolog.html -[12]: http://symfony.com/doc/2.1/cookbook/assetic/asset_management.html -[13]: http://jmsyst.com/bundles/JMSSecurityExtraBundle/1.1 -[14]: http://jmsyst.com/bundles/JMSDiExtraBundle/1.0 -[15]: http://symfony.com/doc/2.1/bundles/SensioGeneratorBundle/index.html +blueroses.hu repository diff --git a/Symfony2-README.md b/Symfony2-README.md new file mode 100644 index 0000000..3d85c92 --- /dev/null +++ b/Symfony2-README.md @@ -0,0 +1,174 @@ +Symfony Standard Edition +======================== + +Welcome to the Symfony Standard Edition - a fully-functional Symfony2 +application that you can use as the skeleton for your new applications. + +This document contains information on how to download, install, and start +using Symfony. For a more detailed explanation, see the [Installation][1] +chapter of the Symfony Documentation. + +1) Installing the Standard Edition +---------------------------------- + +When it comes to installing the Symfony Standard Edition, you have the +following options. + +### Use Composer (*recommended*) + +As Symfony uses [Composer][2] to manage its dependencies, the recommended way +to create a new project is to use it. + +If you don't have Composer yet, download it following the instructions on +http://getcomposer.org/ or just run the following command: + + curl -s http://getcomposer.org/installer | php + +Then, use the `create-project` command to generate a new Symfony application: + + php composer.phar create-project symfony/framework-standard-edition path/to/install + +Composer will install Symfony and all its dependencies under the +`path/to/install` directory. + +### Download an Archive File + +To quickly test Symfony, you can also download an [archive][3] of the Standard +Edition and unpack it somewhere under your web server root directory. + +If you downloaded an archive "without vendors", you also need to install all +the necessary dependencies. Download composer (see above) and run the +following command: + + php composer.phar install + +2) Checking your System Configuration +------------------------------------- + +Before starting coding, make sure that your local system is properly +configured for Symfony. + +Execute the `check.php` script from the command line: + + php app/check.php + +Access the `config.php` script from a browser: + + http://localhost/path/to/symfony/app/web/config.php + +If you get any warnings or recommendations, fix them before moving on. + +3) Browsing the Demo Application +-------------------------------- + +Congratulations! You're now ready to use Symfony. + +From the `config.php` page, click the "Bypass configuration and go to the +Welcome page" link to load up your first Symfony page. + +You can also use a web-based configurator by clicking on the "Configure your +Symfony Application online" link of the `config.php` page. + +To see a real-live Symfony page in action, access the following page: + + web/app_dev.php/demo/hello/Fabien + +4) Getting started with Symfony +------------------------------- + +This distribution is meant to be the starting point for your Symfony +applications, but it also contains some sample code that you can learn from +and play with. + +A great way to start learning Symfony is via the [Quick Tour][4], which will +take you through all the basic features of Symfony2. + +Once you're feeling good, you can move onto reading the official +[Symfony2 book][5]. + +A default bundle, `AcmeDemoBundle`, shows you Symfony2 in action. After +playing with it, you can remove it by following these steps: + + * delete the `src/Acme` directory; + + * remove the routing entries referencing AcmeBundle in + `app/config/routing_dev.yml`; + + * remove the AcmeBundle from the registered bundles in `app/AppKernel.php`; + + * remove the `web/bundles/acmedemo` directory; + + * remove the `security.providers`, `security.firewall.login` and + `security.firewall.secured_area` entries in the `security.yml` file or + tweak the security configuration to fit your needs. + +What's inside? +--------------- + +The Symfony Standard Edition is configured with the following defaults: + + * Twig is the only configured template engine; + + * Doctrine ORM/DBAL is configured; + + * Swiftmailer is configured; + + * Annotations for everything are enabled. + +It comes pre-configured with the following bundles: + + * **FrameworkBundle** - The core Symfony framework bundle + + * [**SensioFrameworkExtraBundle**][6] - Adds several enhancements, including + template and routing annotation capability + + * [**DoctrineBundle**][7] - Adds support for the Doctrine ORM + + * [**TwigBundle**][8] - Adds support for the Twig templating engine + + * [**SecurityBundle**][9] - Adds security by integrating Symfony's security + component + + * [**SwiftmailerBundle**][10] - Adds support for Swiftmailer, a library for + sending emails + + * [**MonologBundle**][11] - Adds support for Monolog, a logging library + + * [**AsseticBundle**][12] - Adds support for Assetic, an asset processing + library + + * [**JMSSecurityExtraBundle**][13] - Allows security to be added via + annotations + + * [**JMSDiExtraBundle**][14] - Adds more powerful dependency injection + features + + * **WebProfilerBundle** (in dev/test env) - Adds profiling functionality and + the web debug toolbar + + * **SensioDistributionBundle** (in dev/test env) - Adds functionality for + configuring and working with Symfony distributions + + * [**SensioGeneratorBundle**][15] (in dev/test env) - Adds code generation + capabilities + + * **AcmeDemoBundle** (in dev/test env) - A demo bundle with some example + code + +Enjoy! + +[1]: http://symfony.com/doc/2.1/book/installation.html +[2]: http://getcomposer.org/ +[3]: http://symfony.com/download +[4]: http://symfony.com/doc/2.1/quick_tour/the_big_picture.html +[5]: http://symfony.com/doc/2.1/ +[6]: http://symfony.com/doc/2.1/bundles/SensioFrameworkExtraBundle/index.html +[7]: http://symfony.com/doc/2.1/book/doctrine.html +[8]: http://symfony.com/doc/2.1/book/templating.html +[9]: http://symfony.com/doc/2.1/book/security.html +[10]: http://symfony.com/doc/2.1/cookbook/email.html +[11]: http://symfony.com/doc/2.1/cookbook/logging/monolog.html +[12]: http://symfony.com/doc/2.1/cookbook/assetic/asset_management.html +[13]: http://jmsyst.com/bundles/JMSSecurityExtraBundle/1.1 +[14]: http://jmsyst.com/bundles/JMSDiExtraBundle/1.0 +[15]: http://symfony.com/doc/2.1/bundles/SensioGeneratorBundle/index.html diff --git a/app/cache/.gitignore b/app/cache/.gitignore deleted file mode 100644 index 4ce1c7b..0000000 --- a/app/cache/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.git* diff --git a/app/logs/.gitignore b/app/logs/.gitignore deleted file mode 100644 index 4ce1c7b..0000000 --- a/app/logs/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.git* diff --git a/spool/.gitignore b/spool/.gitignore deleted file mode 100644 index 4ce1c7b..0000000 --- a/spool/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.git* diff --git a/app/.gitignore b/spool/.gitkeep similarity index 100% rename from app/.gitignore rename to spool/.gitkeep diff --git a/vendor/.gitignore b/vendor/.gitignore deleted file mode 100644 index 4ce1c7b..0000000 --- a/vendor/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.git* diff --git a/web/bundles/.gitignore b/web/bundles/.gitignore deleted file mode 100644 index 4ce1c7b..0000000 --- a/web/bundles/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.git* diff --git a/web/css/.gitignore b/web/css/.gitignore deleted file mode 100644 index 4ce1c7b..0000000 --- a/web/css/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.git* diff --git a/web/js/.gitignore b/web/js/.gitignore deleted file mode 100644 index 59b8172..0000000 --- a/web/js/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -* -!.git* -!jquery-cluetip -!jquery-form diff --git a/web/upload/.gitignore b/web/upload/.gitignore deleted file mode 100644 index 4ce1c7b..0000000 --- a/web/upload/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.git* diff --git a/web/upload/.gitkeep b/web/upload/.gitkeep new file mode 100644 index 0000000..e69de29