From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-3.0 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, URIBL_BLOCKED shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: meta@public-inbox.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id D17121F8B1 for ; Sun, 26 Oct 2014 22:20:37 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] examples/public-inbox.psgi: add usage to comments Date: Sun, 26 Oct 2014 22:20:37 +0000 Message-Id: <1414362037-327-1-git-send-email-e@80x24.org> X-Mailer: git-send-email 2.1.2.564.gaee7d04 List-Id: I often forget how to run this --- examples/public-inbox.psgi | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/public-inbox.psgi b/examples/public-inbox.psgi index 6d8fd24..8eb67eb 100644 --- a/examples/public-inbox.psgi +++ b/examples/public-inbox.psgi @@ -2,6 +2,7 @@ # Copyright (C) 2014, Eric Wong and all contributors # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt) # Note: this is part of our test suite, update t/plack.t if this changes +# Usage: plackup [OPTIONS] /path/to/this/file use strict; use warnings; require PublicInbox::WWW; -- EW