Skip to content

bcneng/website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BcnEng

Netlify Status

BcnEng is a slack community built around the software engineering community from Barcelona.

You can get an invitation to join it here.

Developers

This repository hosts the code to build the static website using Hugo.

To get started and contribute to its growth, you only need to clone the repository, including its submodules, and fire a docker run command.

More precisely, the instructions to start the server locally are:

git clone --recursive git@github.com:bcneng/bcneng.github.io.git
cd bcneng.github.io

Make sure the folder themes/chunky-poster is populated. Otherwise do a:

git submodule init
git submodule update

Then you can start the server:

docker run --rm -it -v "$PWD:/site" -p "1313:1313" alombarte/hugo hugo server -D --bind 0.0.0.0

If you prefer having Hugo installed locally, you can simply do:

hugo server -D

The service will be available on localhost:1313 in both cases unless the port is already in use.

Thanks for contributing!