Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bcneng/website

BcnEng community website
https://github.com/bcneng/website

Last synced: about 1 month ago
JSON representation

BcnEng community website

Awesome Lists containing this project

README

        

# BcnEng
[![Netlify Status](https://api.netlify.com/api/v1/badges/f31a7adf-da08-42fa-a419-053fe7765e0d/deploy-status)](https://app.netlify.com/sites/bcneng/deploys)

[BcnEng](http://bcneng.org) is a slack community built around the software engineering community from Barcelona.

You can get an invitation to join it [here](http://slack.bcneng.org).

## Developers

This repository hosts the code to build the static website using [Hugo](https://gohugo.io/).

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 [email protected]: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](https://gohugo.io/getting-started/installing/), you can simply do:

hugo server -D

The service will be available on [localhost:1313](http://localhost:1313) in both cases unless the port is already in use.

Thanks for contributing!