美文网首页
rails快速创建博客系统

rails快速创建博客系统

作者: zhjwang | 来源:发表于2017-04-23 13:31 被阅读410次

    1.前言

    之前一直在忙毕业论文的事情,所以将公司布置的入职前的作业就搁置了,最近有时间看了下如何使用rails开发一个博客系统。首先想到的是肯定有人已经做过这种东西,于是去github搜索。果然有已经做好的,于是用开源的monologue在5分钟之内就可以实现一个博客系统,当然这种方式很多的细节自己是不能体会到的。对于自己,之前很少接触web开发,还是应该从头到尾写一个博客系统,才能达到学习的效果。

    2.快速实现

    2.1创建项目

    2.2创建相关gem

    添加以下到gemfile

    gem 'monologue'
    

    使用bundle install 生成相关的monologue文件

    2.3数据库相关

    $bin/rake monologue:install:migrations
    $bin/rake db:create (only if this is a new project)
    $bin/rake db:migrate
    

    2.4 创建一个用户

    Monologue::User.create(name: "monologue", email:"monologue@example.com", password:"my-password", password_confirmation: "my-password")
    

    2.5 配置config/initializers/monologue.rb

    Monologue.config do |config|
      config.site_name = "My blog"
      config.site_subtitle = "my own place online"
      config.site_url = "http://example.com"
      config.meta_description = "This is my blog about..."
      config.meta_keyword = "music, fun"
    
      config.admin_force_ssl = false
      config.posts_per_page = 10
      config.preview_size = 1000
    
      config.disqus_shortname = "my_disqus_shortname"
    
      # LOCALE
      config.twitter_locale = "en" # "fr"
      config.facebook_like_locale = "en_US" # "fr_CA"
      config.google_plusone_locale = "en"
    
      # config.layout               = "layouts/application"
    
      # ANALYTICS
      # config.gauge_analytics_site_id = "YOUR COGE FROM GAUG.ES"
      # config.google_analytics_id = "YOUR GA CODE"
    
      config.sidebar = ["latest_posts", "latest_tweets", "categories", "tag_cloud"]
    
    
      #SOCIAL
      config.twitter_username = "myhandle"
      config.facebook_url = "https://www.facebook.com/myhandle"
      config.facebook_logo = 'logo.png'
      config.google_plus_account_url = "https://plus.google.com/u/1/.../posts"
      config.linkedin_url = "http://www.linkedin.com/in/myhandle"
      config.github_username = "myhandle"
      config.show_rss_icon = true
    
    end
    

    可见在主页上显示的内容,都是通过这个配置文件来实现的,如果想要进行修改,可以从这个文件入手。

    3.启动服务,访问博客

    • 首先使用rails s 启动本地的rails服务,然后通过http://localhost:3000就可以访问博客的首页。
    图片.png
    • 在后台可以进行登陆管理博客等
    图片.png 图片.png

    4.总结

    本文使用开源的博客框架,迅速实现了一个博客系统。但是对于学习来说,应该更注重细节和原理性的内容。所以后续从头开始开发一个博客系统,以练习ruby和rails的相关开发。

    相关文章

      网友评论

          本文标题:rails快速创建博客系统

          本文链接:https://www.haomeiwen.com/subject/psfyzttx.html