Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/roboticsbrno/mickoflus.cz
- Owner: RoboticsBrno
- Created: 2018-07-01T22:05:30.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-27T12:20:45.000Z (about 1 year ago)
- Last Synced: 2024-05-29T22:47:54.049Z (7 months ago)
- Topics: balls, esp32, mickoflus, play, playwood
- Language: HTML
- Homepage: https://mickoflus.robotickytabor.cz/
- Size: 46.4 MB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
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
```