Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docker Installation #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 28 additions & 1 deletion web-app/installation.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,34 @@
# Docker Installation

If you have successfully installed the API, you have to install the web-app.
Move to the parentdirectory of your API-Installation by typing
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Move to the parentdirectory of your API-Installation by typing
Change to the parent directory from where you cloned the API repository:


```bash
$ cd ..
```
, clone the repo of Human Connection by typing
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
, clone the repo of Human Connection by typing
, clone the WebApp repository of Human Connection by typing


```bash
$ git clone https://github.com/Human-Connection/WebApp.git

```
and change to its directory with

```bash
$ cd WebApp
```
.
The following command, again, needs root-privileges, on Linux-Systems we strongly recommend the use of sudo, on Windows-Systems you will need admin-rights or you should use the LSS (Linux Sub System).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
The following command, again, needs root-privileges, on Linux-Systems we strongly recommend the use of sudo, on Windows-Systems you will need admin-rights or you should use the LSS (Linux Sub System).
Depending on your user's permissions, the following command, again, needs root-privileges. On Linux-Systems you can use `sudo`, on Windows-Systems you will need admin-rights or you can use the LSS (Linux Sub System).


Determine the web-app of Human Connection by running
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Determine the web-app of Human Connection by running
Setup the WebApp of Human Connection with one command:


```bash
$ sudo docker-compose up
```
After this is done, reload your installation in your browser: [http://localhost:3030](http://localhost:3030), contributions at [http://localhost:3030/contributions](http://localhost:3030/contributions) or users at [http://localhost:3030/users](http://localhost:3030/users).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
After this is done, reload your installation in your browser: [http://localhost:3030](http://localhost:3030), contributions at [http://localhost:3030/contributions](http://localhost:3030/contributions) or users at [http://localhost:3030/users](http://localhost:3030/users).


Congratulations! Now your web-app of Human Connection is running too. :-)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Congratulations! Now your web-app of Human Connection is running too. :-)
This might take a while but after the installation has finished you can point your browser to [http://localhost:3000/](http://localhost:3000/) and see the login screen. Congratulations! :tada:


_More information will follow shortly_

# Local Installation

Expand Down