Skip to content

Commit

Permalink
Adding some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
zyronix committed Jan 15, 2025
1 parent c726785 commit a7c4f95
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
1 change: 1 addition & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install mkdocs
pip install markdown-callouts
sudo apt-get update
sudo apt-get install -y lftp
Expand Down
20 changes: 10 additions & 10 deletions doc/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@ mkdir hashtopolis
cd hashtopolis
```
2. Download docker-compose.yml and env.example
```
wget https://raw.githubusercontent.com/hashtopolis/server/master/docker-compose.yml
wget https://raw.githubusercontent.com/hashtopolis/server/master/env.example -O .env
```
```
wget https://raw.githubusercontent.com/hashtopolis/server/master/docker-compose.yml
wget https://raw.githubusercontent.com/hashtopolis/server/master/env.example -O .env
```
3. Edit the .env file and change the settings to your likings.
```
nano .env
```
```
nano .env
```
4. Start the containers:
```
docker compose up --detach
```
```
docker compose up --detach
```
5. Access the Hashtopolis UI through: http://127.0.0.1:8080 using the credentials (user=admin, password=hashtopolis)
6. If you want to play around with a preview of the version 2 of the UI, consult the New user interface: technical preview section.

Expand Down
6 changes: 4 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@ repo_url: https://github.com/hashtopolis/server
docs_dir: doc
theme:
name: readthedocs
nav:
- 'install.md'
edit_uri: blob/docs/doc/ # Edit the URL to the static branch and folder
markdown_extensions:
- github-callouts # Add the ability of notes, warnings, etc.
- sane_lists # Make the numbered lists continue

0 comments on commit a7c4f95

Please sign in to comment.