Skip to content

Latest commit

 

History

History
22 lines (21 loc) · 527 Bytes

README.md

File metadata and controls

22 lines (21 loc) · 527 Bytes

National Food Today

A website telling you what "food holiday" it is today. Written pretty much using vanilla Preact via preact-cli.

Setup

  1. git clone
  2. Populate a data.json file using the following format:
    [
    	{
    		"duration": 31,
    		"year": 2017,
    		"month": 7,
    		"day": 1,
    		"scope": "National",
    		"food": "Bison",
    		"unit": "Month"
    	},
    	...
    ]
    
  3. npm run dev to test and debug
  4. npm run build to create a static deployment.