https://github.com/fefoweb/fastrecipe
Simple and fast Recipe Manager
https://github.com/fefoweb/fastrecipe
bootstrap grunt management recipes symfony
Last synced: about 2 months ago
JSON representation
Simple and fast Recipe Manager
- Host: GitHub
- URL: https://github.com/fefoweb/fastrecipe
- Owner: fefoweb
- Created: 2017-02-05T00:09:02.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-13T13:20:14.000Z (over 9 years ago)
- Last Synced: 2025-06-02T09:09:47.913Z (about 1 year ago)
- Topics: bootstrap, grunt, management, recipes, symfony
- Language: CSS
- Homepage:
- Size: 3.38 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
fastRecipe
==========
[](https://insight.sensiolabs.com/projects/8d8390f3-25f2-4037-9c90-3805d0149a7a)
A Symfony project to manage Recipe in fast and useful ways!
[Some Example](example.md)
#### To Build
1) $> git clone repository
2) $> cd fastRecipe/
3) $> composer install
4) $> composer run cache-clean
5) Setting up permits for /var folder to your apache user
```shell
$> 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`
$> chmod -R +a "$HTTPDUSER allow delete,write,append,file_inherit,directory_inherit" var
$> chmod -R +a "`whoami` allow delete,write,append,file_inherit,directory_inherit" var
```
6) Install npm(if not installed on your system)
7) Install package required
```shell
$> npm install
```
8) Run client task with grunt
```shell
$> grunt build:deploy
```
> Other task is managed in grunt/aliases.yaml
#### To Run
###### Using Symfony built-in server
```shell
$> php bin/console server:start
```
> go to http://localhost:8000/
###### Configuring your local web server (example Apache)
Editing your httpd-vhost.conf
```shell
ServerName recipe.demo
ServerAlias recipe.demo
DocumentRoot "/fastRecipe/web"
/fastRecipe/web>
AllowOverride All
Order Allow,Deny
Allow from All
ErrorLog "/private/var/log/apache2/recipe-error_log"
CustomLog "/private/var/log/apache2/recipe-access_log" combined
```
Editing /etc/hosts
```shell
127.0.0.1 recipe.demo
```
Restarting Apache service
> go to http://recipe.demo/
This is a minimal configuration, using for simple start porpouse!
####Enjoy!