Skip to content
This repository has been archived by the owner on Aug 7, 2022. It is now read-only.

Latest commit

 

History

History
49 lines (20 loc) · 1.03 KB

README.md

File metadata and controls

49 lines (20 loc) · 1.03 KB

BitDust

bitdust.io

About

Sources for blog.bitdust.io projecvt. This is going to be a simple blog/news web-site about BitDust project.

To Get Started

Make a fork of github repo : click "Fork" in top-right corner: https://github.com/bitdust-io/blog

This way you become owner of a copy of the source codes. This is fully independent from the source :-)

So you just "forked" some files from upstream, now clone your new repository from github to your local machine:

    git clone [email protected]:myusername/bitdust.blog.git bitdust.blog
    cd bitdust.blog

If you would like to get fresh updates from upstream later you can add "main" repo as well, but in read-only mode:

    git add remote upstream https://github.com/bitdust-io/blog.git 
  1. Install hexo framework and other required libraries:

     npm install
    
  2. Generate "LIVE" files for the web site:

     hexo gen
    
  3. Run server on local host:

     hexo server
    
  4. Navigate your web browser to: http :// localhost : 4000