From ebaf48438c7760653d75de205e4b38ea2d2f8872 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Sun, 9 Jul 2023 12:05:48 +0300 Subject: [PATCH] add build instruction --- README.md | 14 ++++++++++++++ scripts/prepare-bootstrap.sh | 4 ++++ 2 files changed, 18 insertions(+) create mode 100644 README.md create mode 100755 scripts/prepare-bootstrap.sh diff --git a/README.md b/README.md new file mode 100644 index 0000000..e942e03 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +Build +----- + +1. Download [Bootstrap](https://getbootstrap.com/) v5.3.0 + +```sh +./scripts/prepare-bootstrap.sh +``` + +2. Build project + +```sh +v . +``` diff --git a/scripts/prepare-bootstrap.sh b/scripts/prepare-bootstrap.sh new file mode 100755 index 0000000..450278d --- /dev/null +++ b/scripts/prepare-bootstrap.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +wget https://github.com/twbs/bootstrap/raw/main/dist/css/bootstrap.min.css \ + -O ./assets/bootstrap.min.css