-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Praesidiarius
committed
Jan 23, 2020
1 parent
e49d171
commit b9eef98
Showing
8 changed files
with
164 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Quick Start | ||
|
||
Now that you have basic knowledge of oneplace, we'll show you the easy way to get started. | ||
|
||
## Install onePlace Core Application | ||
|
||
The easiest way to get started is to install the core application via | ||
Composer. | ||
|
||
If you have not yet done so, [install Composer](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx). | ||
|
||
Once you have, use the `create-project` command to create a new application: | ||
|
||
```bash | ||
$ composer create-project oneplace/oneplace-core my-app | ||
``` | ||
|
||
## Setup | ||
Open the browser and go to your configured URL for onePlace. | ||
You will see the setup screen. | ||
|
||
Enter you MySQL Connection Data and your desirec admin credentials. | ||
|
||
After successfull setup, you will be forwarded to login page - congrats, your oneplace is working! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
|
||
?> | ||
<h1>Update</h1> | ||
Modules that need db installation: | ||
<ul class="list-group"> | ||
<?php | ||
if(count($aInfo['install']) > 0) { | ||
foreach($aInfo['install'] as $sModule) { ?> | ||
<li class="list-group-item"><?=$sModule?></li> | ||
<?php | ||
} | ||
} | ||
?> | ||
</ul> | ||
<hr/> | ||
Modules that need db upgrade: | ||
<ul class="list-group"> | ||
<?php | ||
if(count($aInfo['update']) > 0) { | ||
foreach($aInfo['update'] as $sModule) { ?> | ||
<li class="list-group-item"><?=$sModule?></li> | ||
<?php | ||
} | ||
} | ||
?> | ||
</ul> | ||
|
||
<form method="POST" action=""> | ||
<div class="form-row"> | ||
<!-- Submit --> | ||
<button type="submit" class="btn btn-primary">Update</button> | ||
</div> | ||
</form> |