Update gitignore file and readme

This commit is contained in:
Clemens Schwaighofer
2023-02-17 13:15:55 +09:00
parent 104f91a77c
commit 0680c2fd4a
2 changed files with 32 additions and 4 deletions

1
.gitignore vendored
View File

@@ -1 +1,2 @@
vendor
composer.lock

View File

@@ -4,16 +4,43 @@ This is just the lib/CoreLibs folder in a composer package.
For local install only
## Setup
## Setup from central composer
In the composer.json file add the following
| Host | Location | Type |
| - | - | - |
| composer.tokyo.tequila.jp | soba-local | Local test |
| composer-local.tokyo.tequila.jp | udon-local | Local Live, no https |
| composer.egplusww.jp | udon | General Live (use this) |
composer.json:
For Local test, note that secure-http has to be turned off:
```json
{
"repositories": [
{
"type": "vcs",
"url": "https://git.egplusww.jp/Composer/CoreLibs-Composer-All"
"type": "composer",
"url": "http://composer.tokyo.tequila.jp"
}
],
"require": {
"egrajp/corelibs-composer-all": "@dev"
},
"config": {
"secure-http": false
}
}
```
For live settings
```json
{
"repositories": [
{
"type": "composer",
"url": "https://composer.egplusww.jp"
}
],
"require": {