-
Notifications
You must be signed in to change notification settings - Fork 6
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
base: master
Are you sure you want to change the base?
Conversation
Added the content of the Docker installation of the web-app.
@@ -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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
, clone the repo of Human Connection by typing | |
, clone the WebApp repository of Human Connection by typing |
```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). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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). |
$ 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). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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). |
. | ||
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). | ||
|
||
Determine the web-app of Human Connection by running |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Determine the web-app of Human Connection by running | |
Setup the WebApp of Human Connection with one command: |
``` | ||
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. :-) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@AndreasAusKiel nice!
Again, a couple of suggestions. You don't have to reload the backend (API) in order to run the seeds. Also, this README is unrelated to the backend.
Added the content of the Docker installation of the web-app.