Skip to content

Commit 85da092

Browse files
alexander-schranzdanrot
authored andcommitted
Added license file and updated readme (#137)
* added license file and updated readme * updated readme
1 parent dc60e01 commit 85da092

File tree

2 files changed

+30
-21
lines changed

2 files changed

+30
-21
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Sulu GmbH
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 9 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,16 @@
11
# Sulu Minimal Edition
22

3-
Welcome to the Sulu Minimal Edition - a fully-functional Sulu application that you can use as the skeleton for your new
4-
applications.
3+
[![GitHub license](https://img.shields.io/github/license/sulu/sulu-minimal.svg)](https://github.com/sulu/sulu-minimal/blob/master/LICENSE)
4+
[![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/sulu/sulu-minimal.svg)](https://github.com/sulu/sulu-minimal/releases)
5+
[![GitHub tag (latest by date)](https://img.shields.io/github/tag-date/sulu/sulu-minimal.svg)](https://github.com/sulu/sulu-minimal/releases)
6+
[![Travis](https://travis-ci.org/sulu/sulu-minimal.png?branch=master)](https://travis-ci.org/sulu/sulu-minimal)
57

6-
## Installation
8+
Welcome to the Sulu Minimal Edition - the recommended skeleton to start a new [Sulu](https://github.com/sulu/sulu) project.
79

8-
__Mac:__
10+
## Getting started
911

10-
```
11-
rm -rf var/cache/*
12-
rm -rf var/logs/*
13-
rm -rf var/sessions/*
14-
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`
15-
sudo chmod +a "$HTTPDUSER allow delete,write,append,file_inherit,directory_inherit" var/cache var/logs var/uploads var/uploads/* web/uploads web/uploads/* var/indexes var/sessions
16-
sudo chmod +a "`whoami` allow delete,write,append,file_inherit,directory_inherit" var/cache var/logs var/uploads var/uploads/* web/uploads web/uploads/* var/indexes var/sessions
17-
```
12+
Starting a new Sulu project is explained in our [documentation](http://docs.sulu.io/en/latest/book/getting-started.html).
1813

19-
__Linux:__
14+
## Issues
2015

21-
```
22-
rm -rf var/cache/*
23-
rm -rf var/logs/*
24-
rm -rf var/sessions/*
25-
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`
26-
sudo setfacl -R -m u:"$HTTPDUSER":rwX -m u:`whoami`:rwX var/cache var/logs var/uploads var/uploads/* web/uploads web/uploads/* var/indexes var/sessions
27-
sudo setfacl -dR -m u:"$HTTPDUSER":rwX -m u:`whoami`:rwX var/cache var/logs var/uploads var/uploads/* web/uploads web/uploads/* var/indexes var/sessions
28-
```
16+
Submit any sulu related issues to the [sulu/sulu](https://github.com/sulu/sulu/issues) repository.

0 commit comments

Comments
 (0)