{"id":31045104,"url":"https://github.com/dativebase/senex","last_synced_at":"2025-09-14T16:57:50.715Z","repository":{"id":150185148,"uuid":"57239619","full_name":"dativebase/senex","owner":"dativebase","description":"Web-based administrative tool for OLDs","archived":false,"fork":false,"pushed_at":"2019-01-14T02:45:54.000Z","size":860,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-08-09T05:11:07.121Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dativebase.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGES.txt","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2016-04-27T19:11:45.000Z","updated_at":"2019-01-14T02:45:56.000Z","dependencies_parsed_at":"2023-05-31T20:15:51.780Z","dependency_job_id":null,"html_url":"https://github.com/dativebase/senex","commit_stats":null,"previous_names":["jrwdunham/senex"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dativebase/senex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dativebase%2Fsenex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dativebase%2Fsenex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dativebase%2Fsenex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dativebase%2Fsenex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dativebase","download_url":"https://codeload.github.com/dativebase/senex/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dativebase%2Fsenex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275136757,"owners_count":25411709,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-14T02:00:10.474Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-09-14T16:57:49.794Z","updated_at":"2025-09-14T16:57:50.707Z","avatar_url":"https://github.com/dativebase.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Senex\n================================================================================\n\n.. image:: https://raw.githubusercontent.com/jrwdunham/senex/master/senex/static/senex-logo-2.png\n\nSenex is a `Pyramid`_ web application for high-level administration of\n`Online Linguistic Database (OLD)`_ applications.\n\nWith Senex installed, you can install the OLD and its dependencies as well as\ndo the following:\n\n- create new OLD instances (e.g., for particular lanaguages)\n- start and stop existing OLD instances\n\n\nRequirements\n--------------------------------------------------------------------------------\n\nRight now Senex will only work with Ubuntu servers. Ubuntu 14.04 is the primary\ntarget, though Senex may also work with Ubuntu 10.04.\n\nThe following must be installed in order for Senex to work. It can install the\nrest of its requirements and the rest of the OLD's requirements on its own.\n\n- Python 2.7\n- MySQL server\n- Apache 2 or Nginx\n- git\n\nThe MySQL user specified via Senex's interface must exist and must have been\ngranted full privileges::\n\n    mysql\u003e CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';\n    mysql\u003e GRANT ALL PRIVILEGES ON *.* TO 'newuser'@'localhost';\n    mysql\u003e FLUSH PRIVILEGES;\n\n\nInstalling Senex\n--------------------------------------------------------------------------------\n\nFirst, if you don't have Python 2.7 as your system Python (which is the case\nwith Ubuntu 10.04), then install it using the instructions in `Install Python\n2.7 on Ubuntu 10.04` below.\n\nIf Python 2.7 is your system python and you don't have Python setuptools\ninstalled in it, then install it::\n\n    $ sudo apt-get install python-setuptools\n\nIf you don't have Python's virtualenv installed in your system Python, then\ninstall it using easy_install from setuptools::\n\n    $ sudo easy_install virtualenv\n\nCreate a virtual environment::\n\n    $ cd ~\n    $ virtualenv env-senex\n\nDownload Senex's source from GitHub and install its dependencies::\n\n    $ git clone https://github.com/jrwdunham/senex.git\n    $ cd senex\n    $ ~/env-senex/bin/python setup.py develop\n\nInstall the OLD and its dependencies::\n\n    $ sudo ~/env-senex/bin/python senex/installold.py\n\nCreate Senex's database tables and serve it::\n\n    $ cd\n    $ env-senex/bin/initialize_senex_db senex/development.ini\n    $ env-senex/bin/pserve senex/development.ini\n\n\n\n\nInstall Python 2.7 on Ubuntu 10.04\n--------------------------------------------------------------------------------\n\nInstall it::\n\n    $ sudo apt-get install python-software-properites\n    $ sudo add-apt-repository ppa:fkrull/deadsnakes\n    $ sudo apt-get update\n    $ sudo apt-get install python2.7 python2.7-dev\n\nInstall setuptools for Python2.7::\n\n    $ wget --no-check-certificate https://bootstrap.pypa.io/ez_setup.py -O - | sudo python2.7\n\nIf you don't have Python's virtualenv installed in your system Python, then\ninstall it using easy_install from setuptools::\n\n    $ sudo easy_install-2.7 virtualenv\n\n\n\n\nCreating a Development Setup for Senex\n--------------------------------------------------------------------------------\n\nIf you don't have Python setuptools installed in your system Python, install it::\n\n    $ sudo apt-get install python-setuptools\n\nIf you don't have Python's virtualenv installed in your system Python, then\ninstall it using easy_install from setuptools::\n\n    $ sudo easy_install virtualenv\n\nCreate and activate a virtual environment::\n\n    $ virtualenv env\n    $ source env/bin/activate\n\nDownload the Senex repo and install its dependencies::\n\n    $ git clone https://github.com/jrwdunham/senex.git\n    $ cd senex\n    $ python setup.py develop\n\nCreate Senex's database tables and serve it::\n\n    $ initialize_senex_db development.ini\n    $ pserve development.ini\n\n\n.. _`Online Linguistic Database (OLD)`: http://www.onlinelinguisticdatabase.org\n\n.. _`Pyramid`: http://www.pylonsproject.org/\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdativebase%2Fsenex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdativebase%2Fsenex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdativebase%2Fsenex/lists"}