Code Monkey home page Code Monkey logo

silabas's Introduction

La clave de todo esto está aquí: https://github.com/xergio/silabas/blob/master/home/silabea.py


- Software creado gracias a:

nginx http://www.nginx.org
python http://www.python.org
django http://www.django-project.com
redis http://redis.io
bootstrap http://twitter.github.com/bootstrap


- Páginas de referencia para crear el algoritmo:

http://www.fismat.umich.mx/~karina/tesisLicenciatura/capitulo2.html
http://es.wikipedia.org/wiki/S%C3%ADlaba
http://liceu.uab.es/~joaquim/phonetics/fon_esp/silaba_espanol.html
http://es.wikipedia.org/wiki/Hiato_(fonolog%C3%ADa)
http://www.galeon.com/la-poesia/ortograf.pdf
http://es.wikipedia.org/wiki/Di%C3%A9resis
http://es.wikipedia.org/wiki/Diptongo
http://es.wikipedia.org/wiki/Triptongo
http://www.rae.es/consultas/palabras-como-guion-truhan-fie-liais-etc-se-escriben-sin-tilde (gracias a Marta Lamela)


- Configuración de nginx:

server {
        listen          80;
        server_name     silabas.xrg.es;
        index           index.html;

        location / {
                include         uwsgi_params;
                uwsgi_pass      unix:/tmp/uwsgi-silabas.sock;
        }

        location ~ ^/(media/|static/|img/|js/|css/|fonts/|robots.txt|humans.txt|favicon.ico) {
                root /home/salvarez/www/silabas.xrg.es/public;
                access_log off;
                expires 1h;
        }
}


- Configuración de uWSGI (/etc/init/uwsgi.conf):

description "uwsgi silabas"
start on runlevel [2345]
stop on runlevel [06]

respawn
exec uwsgi --master --pidfile=/var/run/uwsgi.pid --emperor /home/salvarez/conf/uwsgi --logto /var/log/uwsgi.log


- Configuración de la app (silabas.ini) [http://uwsgi-docs.readthedocs.org/en/latest/Emperor.html]

[uwsgi]
chdir = /home/salvarez/www/silabas.xrg.es 
module = silabas.wsgi 
env = DJANGO_SETTINGS_MODULE=silabas.settings 
socket = /tmp/uwsgi-silabas.sock  
uid = 1000 
gid = 1000 
harakiri = 10 
max-requests = 500 
logto = /var/log/uwsgi-silabas.log
enable-threads = true

silabas's People

Contributors

xergio avatar flobosg avatar patoroco avatar

Watchers

James Cloos avatar  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.