Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/roboticsbrno/mickoflus.cz

🏀 Web page for Míčkoflus
https://github.com/roboticsbrno/mickoflus.cz

balls esp32 mickoflus play playwood

Last synced: 18 days ago
JSON representation

🏀 Web page for Míčkoflus

Awesome Lists containing this project

README

        

# Mickoflus

Web page for MĂ­ÄŤkoflus - https://mickoflus.robotickytabor.cz/

## How to make image previews on a local computer

The website uses [gulp](https://gulpjs.com/) to generate miniatures for images. Therefore when you
clone the repo, there will be no previews. To fix it, just call `gulp build`.
The first execution can take up to 10 minutes to complete.

Note: Gulp is also used to deploy the website. This step is automated using
travis a therefore is not needed to be executed manually.

## For Windows users

The (probably) easiest way to run `gulp` is to use [Windows Subsystem for
Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10).

Then execute these commands in terminal:
```
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-get install npm
cd WORKING_DIR_WITH_THIS_PROJECT
npm install
gulp build
```

It could be also necessary install `gulp` separately:

```
sudo npm install -g gulp
```