From f9ae1433708f2c374d7645f7ceb37851d7661335 Mon Sep 17 00:00:00 2001 From: Mik-TF Date: Tue, 4 Jun 2024 08:56:19 -0400 Subject: [PATCH] added makefile --- Makefile | 3 +++ README.md | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..202b232 --- /dev/null +++ b/Makefile @@ -0,0 +1,3 @@ +run: + npm install + npm run dev diff --git a/README.md b/README.md index 35abab2..b0a014a 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ - [Introduction](#introduction) - [Prerequisites](#prerequisites) - [Website Preview](#website-preview) +- [Run with Make](#run-with-make) - [License](#license) - [References](#references) - [Contribute](#contribute) @@ -39,6 +40,14 @@ npm run dev For more information, read the original [AstroWind docs](./website_docs/README.md). +## Run with Make + +To run the website locally with Make, simply run: + +``` +make run +``` + ## License **INCA Docs** is licensed under the Apache 2.0 license — see the [LICENSE](./LICENSE.md) file for details.