doc/book/en/intro/tutorial/blog-in-five-minutes.rst
branchstable
changeset 2175 16d3c37c5d28
parent 2174 7f576dc9502e
child 4143 e6d936eef7aa
equal deleted inserted replaced
2174:7f576dc9502e 2175:16d3c37c5d28
       
     1 .. -*- coding: utf-8 -*-
       
     2 
       
     3 .. _BlogFiveMinutes:
       
     4 
       
     5 Get a blog running in five minutes!
       
     6 -----------------------------------
       
     7 
       
     8 First install the following packages (:ref:`DebianInstallation`)::
       
     9 
       
    10     cubicweb, cubicweb-dev, cubicweb-blog
       
    11 
       
    12 Then create and initialize your instance::
       
    13 
       
    14     cubicweb-ctl create blog myblog
       
    15 
       
    16 And start it::
       
    17 
       
    18     cubicweb-ctl start -D myblog
       
    19 
       
    20 This is it. Your blog is running. Visit http://localhost:8080 and enjoy it!
       
    21 
       
    22 As a developer, you'll want to know more about developing new cubes and
       
    23 customizing the look of your instance. This is what the next section is about.
       
    24 
       
    25