40 lines
997 B
Markdown
40 lines
997 B
Markdown
<h1> ThreeFold V4 Website </h1>
|
|
|
|
<h2>Table of Contents</h2>
|
|
|
|
- [Introduction](#introduction)
|
|
- [Install the Website](#install-the-website)
|
|
- [Start the Website](#start-the-website)
|
|
- [With Hero Docker (Optional)](#with-hero-docker-optional)
|
|
|
|
---
|
|
|
|
## Introduction
|
|
|
|
We present the new version of the ThreeFold website for V4. This website has a minimalistic aesthetics.
|
|
|
|
## Install the Website
|
|
|
|
Run the following lines to install the website:
|
|
|
|
```bash
|
|
hero git clone -u git@git.ourworld.tf:tfgrid/www_threefold4.git
|
|
~/code/git.ourworld.tf/tfgrid/www_threefold4/install.sh
|
|
```
|
|
|
|
## Start the Website
|
|
|
|
Run the following line to start the website:
|
|
|
|
```bash
|
|
~/code/git.ourworld.tf/tfgrid/www_threefold4/start.sh
|
|
```
|
|
|
|
## With Hero Docker (Optional)
|
|
|
|
You can use Hero Docker instead of a local installation. Simply run this before doing the installation and start steps.
|
|
|
|
```
|
|
docker pull logismosis/hero:latest
|
|
docker run -it --net=host --name=hero-container -v ~/code:/root/code logismosis/hero:latest
|
|
``` |