Skip to content

Instantly share code, notes, and snippets.

@masfj
Created September 2, 2015 18:09
Show Gist options
  • Save masfj/d93fbf2a63956d5b1cfc to your computer and use it in GitHub Desktop.
Save masfj/d93fbf2a63956d5b1cfc to your computer and use it in GitHub Desktop.
$ mkdir pelican_dir
$ pyvenv pelican_dir
$ cd pelican_dir
$ source bin/activate
(pelican_dir) $ pip install pelican
(pelican_dir) $ pip install markdown
(pelican_dir) $ pelican-quickstart
> Where do you want to create your new web site? [.] 
> What will be the title of this web site? (website name)
> Who will be the author of this web site? (author name)
> What will be the default language of this web site? [en] (ja)
> Do you want to specify a URL prefix? e.g., http://example.com   (Y/n) (y)
> What is your URL prefix? (see above example; no trailing slash) (http://usrname.github.io)
> Do you want to enable article pagination? (Y/n) (y)
> How many articles per page do you want? [10] 
> What is your time zone? [Europe/Paris] (Asia/Tokyo)
> Do you want to generate a Fabfile/Makefile to automate generation and publishing? (Y/n) (y)
> Do you want an auto-reload & simpleHTTP script to assist with theme and site development? (Y/n) (y)
> Do you want to upload your website using FTP? (y/N) (n)
> Do you want to upload your website using SSH? (y/N) (n)
> Do you want to upload your website using Dropbox? (y/N) (n)
> Do you want to upload your website using S3? (y/N) (n)
> Do you want to upload your website using Rackspace Cloud Files? (y/N) (n)
> Do you want to upload your website using GitHub Pages? (y/N) (y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment