Go to file
sovanna 40e2feaac4 fix(website): Applies various changes
- updates config
- changes typo ARTIQ
- decrease logos size on mobile for ARTIQ
- adds robots.txt and disallow robot (meta too)
2019-07-08 11:59:50 +02:00
content fix(website): Applies various changes 2019-07-08 11:59:50 +02:00
sass/css fix(website): Applies various changes 2019-07-08 11:59:50 +02:00
static fix(website): Adds missing map file 2019-07-05 18:25:22 +02:00
templates fix(website): Applies various changes 2019-07-08 11:59:50 +02:00
.gitignore feat(website): Adds desktop homepage 2019-07-03 11:52:11 +02:00
README.md feat(website): Adds desktop homepage 2019-07-03 11:52:11 +02:00
config.toml fix(website): Applies various changes 2019-07-08 11:59:50 +02:00

README.md

m-labs with zola

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

What things you need to install the software and how to install them

Installing

A step by step series of examples that tell you how to get a development env running

  1. Clone the project
git clone https://github.com/sovanna/m-labs-zola.git \
&& cd m-labs-zola
  1. Build the docker container for development
cd <path-to-workspace>/m-labs/zola/website

docker run \
  -p 1111:1111 \
  -v "$PWD:/usr/src/app/website" \
  --name mlabs-zola \
  -it \
  sovanna/zola

ctrl+d # to exit the container
  1. Start
docker start mlabs-zola
docker exec -it mlabs-zola /bin/bash
cd website
zola serve --interface 0.0.0.0 --port 1111