blob: 5c49e66cdc84e828193e9b80d8051fbbc62a38e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<script type="text/javascript" src="garden.js"></script>
<link href="css/garden.css" rel="stylesheet">
</head>
<body>
<div id="container" class="container">
<h1>Intensive Vegetable Garden Scheduler</h1>
<p>
This handy tool helps plan your intensively planted, organic,
no-dig, home vegetable garden. Just select your first and
last frost dates and a planting schedule will be generated for
you.
</p>
<p>
The schedule works by using generalized information about
different types of crops such as average weeks to maturity,
whether direct sowing or transplanting is preferred, weeks
between plantings for continuous harvests, when and how a fall
crop should be planted (if applicable), etc. Such
generalizations could never hope to capture the true
complexity of growing vegetables, but it should serve as a
useful reference point so that you don't get lost in the weeds
during the growing season and forget to sow the next crop of
bush beans.
</p>
<p>
My gardening style is a combination of several intensive
growing strategies in an attempt to grow as much food as
possible using the least space and least effort. Those
strategies are: square foot gardening, "no dig" AKA "no till",
multisowing, and succession planting.
</p>
<p>
Finally, this planner is intended for gardeners located in the
nothern areas of the northern hemisphere (USDA zone 7 and below)
where we need to start many summer crops indoors and cannot
harvest during winter without season extension. All planting
dates are made under the assumption that no season extension
techniques are being applied.
</p>
<p>
<a href="https://git.dthompson.us/intensive-garden-planner.git">Source
code</a> is available under the GNU Affero General Public
License version 3 or later. Perhaps you'd like to add a new
crop or fix a bug?
</p>
<h2>Configuration</h2>
<div>
<label for="last-frost-date">Last frost date:</label>
<input name="last-frost-date" type="date"></input>
</div>
<div>
<label for="first-frost-date">First frost date:</label>
<input name="first-frost-date" type="date"></input>
</div>
<h2>Schedule</h2>
<div>
<h3>Key</h3>
<ul>
<li><img src="images/start-indoors.svg" class="key"/>: start seeds indoors</li>
<li><img src="images/direct-sow.svg" class="key"/>: direct sow outdoors</li>
<li><img src="images/transplant.svg" class="key"/>: transplant outdoors</li>
</ul>
<table id="schedule"></table>
</div>
<h2>Week-by-week instructions</h2>
<div id="instructions"></div>
</div>
</body>
</html>
|