Require twbs/bootstrap via composer
This commit is contained in:
parent
84f6990db2
commit
b839e40106
|
@ -1,3 +0,0 @@
|
|||
[submodule "vendor/bootstrap"]
|
||||
path = themes/assets/bootstrap
|
||||
url = https://github.com/twbs/bootstrap.git
|
|
@ -6,7 +6,7 @@
|
|||
* Webserver, i.e. lighttpd, nginx, or Apache
|
||||
|
||||
## Directions:
|
||||
* Clone the master branch with the submodules: `git clone --recursive https://github.com/engelsystem/engelsystem.git`
|
||||
* Clone the master branch: `git clone https://github.com/engelsystem/engelsystem.git`
|
||||
* Install [Composer](https://getcomposer.org/download/)
|
||||
* Install project dependencies: `composer install`
|
||||
* Webserver must have write access to the 'import' directory and read access for all other directories
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* Webserver mit PHP-Anbindung, z.B. lighttpd, nginx oder Apache
|
||||
|
||||
## Vorgehen:
|
||||
* Klonen des `master` inkl. submodules in lokales Verzeichnis: `git clone --recursive https://github.com/engelsystem/engelsystem.git`
|
||||
* Klonen des `master` in lokales Verzeichnis: `git clone https://github.com/engelsystem/engelsystem.git`
|
||||
* [Composer](https://getcomposer.org/download/) installieren
|
||||
* Abhängigkeiten installieren: `composer install`
|
||||
* Der Webserver muss Schreibrechte auf das Verzeichnis `import` bekommen, für alle anderen Dateien reichen Leserechte.
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
],
|
||||
"require": {
|
||||
"php": ">=5.4",
|
||||
"erusev/parsedown": "1.6.*"
|
||||
"erusev/parsedown": "1.6.*",
|
||||
"twbs/bootstrap": "^3.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
../../themes/assets/bootstrap/dist
|
||||
../../vendor/twbs/bootstrap/dist
|
|
@ -1 +0,0 @@
|
|||
Subproject commit ad716b9ea9506456f28e2c1bcdd7b4a81b44c11c
|
|
@ -1,6 +1,6 @@
|
|||
@import "assets/bootstrap/less/bootstrap";
|
||||
@import "../vendor/twbs/bootstrap/less/bootstrap";
|
||||
|
||||
@icon-font-path: "../fonts/";
|
||||
@icon-font-path: "../vendor/bootstrap/fonts/";
|
||||
|
||||
body {
|
||||
padding-top: 50px;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@import "assets/bootstrap/less/variables";
|
||||
@import "../vendor/twbs/bootstrap/less/variables";
|
||||
|
||||
/*
|
||||
The MIT License (MIT)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@import "assets/bootstrap/less/variables";
|
||||
@import "../vendor/twbs/bootstrap/less/variables";
|
||||
|
||||
@brand-primary: #758499;
|
||||
@brand-success: #7b9c41;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@import "assets/bootstrap/less/variables";
|
||||
@import "../vendor/twbs/bootstrap/less/variables";
|
||||
|
||||
@brand-primary: #f19224;
|
||||
@brand-success: #39AB50;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@import "assets/bootstrap/less/variables";
|
||||
@import "../vendor/twbs/bootstrap/less/variables";
|
||||
|
||||
/*
|
||||
The MIT License (MIT)
|
||||
|
|
Loading…
Reference in New Issue