Git Product home page Git Product logo

trailerpark's Introduction

Trailerpark is a blog.

Status:

On the horizon. Lacks basic features such as creating articles, so don't crack open the Coors Light just yet.

Requirements:

Installation

  • Edit tp.conf. Make some changes.
  • Run "./tp.py --install", this will create the database, some views and maybe a doc or two.
  • Run "./tp.py"
  • No software installation at this point, just run it from the source directory.
  • Tornado isn't configured to serve static resources, so you'll need to run it behind a webserver (such as Nginx).

Deployment:

Nginx is recommended. Here's a basic Nginx configuration for Trailerpark:

server {
    listen      80;
    server_name localhost _;

    access_log  /var/log/nginx/trailerpark-access_log;
    error_log   /var/log/nginx/trailerpark-error_log info;

    root /var/www/trailerpark/static;

    location / {
        try_files $uri @tornado;
    }

    location @tornado {
        include proxy_params;
        proxy_pass http://127.0.0.1:5000;
    }

    location /plugins {
        location ~ \.py[c~]?|\.b~? { return 404; }
        root /var/www/trailerpark;
    }

    location = /favicon.ico { return 404; }
}

trailerpark's People

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.