Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bcneng/website
BcnEng community website
https://github.com/bcneng/website
Last synced: about 1 month ago
JSON representation
BcnEng community website
- Host: GitHub
- URL: https://github.com/bcneng/website
- Owner: bcneng
- Created: 2017-12-07T15:29:53.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2024-09-18T08:12:29.000Z (3 months ago)
- Last Synced: 2024-10-30T05:42:28.196Z (about 2 months ago)
- Language: HTML
- Homepage: https://bcneng.org/
- Size: 1.31 MB
- Stars: 12
- Watchers: 6
- Forks: 51
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
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.ioMake sure the folder `themes/chunky-poster` is populated. Otherwise do a:
git submodule init
git submodule updateThen 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!