Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lore/www.lorejs.org
Homepage for Lore, a convention-driven framework for React
https://github.com/lore/www.lorejs.org
Last synced: about 1 month ago
JSON representation
Homepage for Lore, a convention-driven framework for React
- Host: GitHub
- URL: https://github.com/lore/www.lorejs.org
- Owner: lore
- License: mit
- Created: 2016-05-12T23:52:27.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-11T20:30:52.000Z (almost 2 years ago)
- Last Synced: 2024-05-16T23:53:15.785Z (7 months ago)
- Language: JavaScript
- Homepage: http://www.lorejs.org
- Size: 31.3 MB
- Stars: 1
- Watchers: 3
- Forks: 3
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# www.lorejs.org
This repository contains the code for the Lore website, hosted at [lorejs.org](http://www.lorejs.org), and is
a [Gatsby](https://www.gatsbyjs.org/) application.## Installation
You will need to have `node` and `npm` installed to work with this repo.Once installed, clone the repo:
```
git clone https://github.com/lore/www.lorejs.org.git
```Then install the packages:
```
npm install
```## Running the Website
To set up the project for local development, run this command:```
npm run develop
```Then open a web browser and navigate to `http://localhost:8000`.
The website is configured for hot-reloading, and will automatically reflect changes as you make them to the code,
without the need to refresh the page.## Building the Website
To build the website, run this command:```
npm run build
```This will create a `public` folder at the root of the project and all assest will be compiled and minified and
copied to that folder.