-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
README / docs #213
Comments
The docs is incomplete as today, is not clear how to use the server -> https://mishmash.readthedocs.io/en/latest/usage.html#mishmash-web |
any ping for this? |
Hi @Mte90 , I've not rally working on MishMash currently, though not calling it dead. Contributions welcome. I run my server with: And config: [mishmash]
sqlalchemy.url = <set via MISHMASH_DBURL environment variable>
[library:Music]
paths = /media/music/
sync = true
[server]
sync = true
web = true
unsonic = false
[loggers]
keys = root, sqlalchemy, eyed3, mishmash, alembic
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_sqlalchemy]
level = NOTSET
handlers =
qualname = sqlalchemy.engine
# "level = INFO" logs SQL queries.
# "level = DEBUG" logs SQL queries and results.
# "level = WARN" logs neither. (Recommended for production systems.)
propagate = 1
[logger_alembic]
level = NOTSET
handlers =
qualname = alembic
propagate = 1
[logger_mishmash]
level = NOTSET
qualname = mishmash
handlers =
propagate = 1
[logger_eyed3]
level = ERROR
qualname = eyed3
handlers =
propagate = 1
[handler_file]
class = handlers.RotatingFileHandler
args = ("/var/log/mishmash/mishmash.log",)
level = DEBUG
formatter = generic
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[formatter_generic]
format = <%(name)s:%(threadName)s> [%(levelname)s]: %(message)s
###
# web app configuration
# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
###
[app:main]
use = call:mishmash.web:main
pyramid.reload_templates = true
pyramid.default_locale_name = en
pyramid.includes =
pyramid_tm
[server:main]
use = egg:gunicorn
workers = 2
worker_class = gevent
host = 0.0.0.0
port = 6229
ssl_version=TLS_SERVER
certfile=/etc/cert.pem
keyfile=/etc/privkey.pem |
I tried without files sync:
With command
|
No description provided.
The text was updated successfully, but these errors were encountered: