The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl
# PODNAME: duckpan
# ABSTRACT: Command line tool for using the DuckPAN of DuckDuckGo

$|=1;

use App::DuckPAN;
App::DuckPAN->new_with_cmd;

__END__

=pod

=head1 NAME

duckpan - Command line tool for using the DuckPAN of DuckDuckGo

=head1 VERSION

version 0.108

=head1 DESCRIPTION

L<App::DuckPAN> for more informations.

=head1 SYNPOSIS

  duckpan check
  # Check for the requirements to make duckpan contributions
  
  duckpan query
  # Fire up your own CLI DuckDuckGo to test plugin triggers
  # Use it in the zeroclickinfo-goodies or zeroclickinfo-spice repository root

  duckpan server
  # Fire up your own Webserver that acts like DuckDuckGo to test
  # spice (and goodies if you like). Use it in the
  # zeroclickinfo-spice repository root or zeroclickinfo-goodies
  
  duckpan help <command>
  # Display the various duckpan commands

  duckpan test
  # Test your release (this will run automatically before a release)
	
	duckpan installdeps
	# Install all requirements of the specific DuckDuckHack project (if
	# possible), like zeroclickinfo-spice, zeroclickinfo-goodie, duckduckgo
	# or community-platform

  duckpan env <name> <value>
  # Add an environment variable that duckpan will remember. Useful for
  # spice API keys. Variables are stored in ~/.duckpan/env.ini

  duckpan env rm <name>
  # Remove an environment variable from duckpan

  #
	# NOTE: For the followings you need an account at https://dukgo.com/
	#

  duckpan poupload
  # Upload a po file to the Community Platform (Translation manager only)

  duckpan publisher
  # Live testing of duckduckgo-publisher

  duckpan release
  # Release the project of the current directory to DuckPAN

  # BETA
  duckpan setup
  # Setup your environment for using Dist::Zilla::Plugin::UploadToDuckPAN
  #######

=head1 SEE ALSO

L<https://duckduckgo.com>

L<https://github.com/duckduckgo>

L<https://dukgo.com>

L<http://duckpan.org>

=head1 SUPPORT

IRC

  Join us on #duckduckgo on irc.freenode.net

Repository

  https://github.com/duckduckgo/p5-app-duckpan
  Pull request and additional contributors are welcome

Issue Tracker

  https://github.com/duckduckgo/p5-app-duckpan/issues

=head1 AUTHOR

Torsten Raudssus <torsten@raudss.us> L<https://raudss.us/>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by DuckDuckGo, Inc. L<http://duckduckgo.com/>.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut