{"id":34314176,"url":"https://github.com/crcollins/chemtools-webapp","last_synced_at":"2025-12-17T10:52:23.777Z","repository":{"id":4760273,"uuid":"5910601","full_name":"crcollins/chemtools-webapp","owner":"crcollins","description":"A webapp for chemistry research.","archived":false,"fork":false,"pushed_at":"2019-03-20T02:43:45.000Z","size":7122,"stargazers_count":7,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-03-11T10:56:12.136Z","etag":null,"topics":["chemistry","machine-learning","parser","python","quantum"],"latest_commit_sha":null,"homepage":"https://gauss.crcollins.com","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/crcollins.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-09-22T05:43:01.000Z","updated_at":"2022-03-04T15:32:40.000Z","dependencies_parsed_at":"2022-09-21T01:00:52.528Z","dependency_job_id":null,"html_url":"https://github.com/crcollins/chemtools-webapp","commit_stats":null,"previous_names":[],"tags_count":0,"template":null,"template_full_name":null,"purl":"pkg:github/crcollins/chemtools-webapp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crcollins%2Fchemtools-webapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crcollins%2Fchemtools-webapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crcollins%2Fchemtools-webapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crcollins%2Fchemtools-webapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/crcollins","download_url":"https://codeload.github.com/crcollins/chemtools-webapp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crcollins%2Fchemtools-webapp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27781998,"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-12-17T02:00:08.291Z","response_time":55,"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":["chemistry","machine-learning","parser","python","quantum"],"created_at":"2025-12-17T10:52:23.250Z","updated_at":"2025-12-17T10:52:23.768Z","avatar_url":"https://github.com/crcollins.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"ChemTools-WebApp\n================\n[![Build Status](https://travis-ci.org/crcollins/chemtools-webapp.svg?branch=master)](https://travis-ci.org/crcollins/chemtools-webapp)\n[![Coverage Status](https://coveralls.io/repos/crcollins/chemtools-webapp/badge.svg)](https://coveralls.io/r/crcollins/chemtools-webapp)\n\nA Django webapp built around the functionality of [chemtools [DEPRECATED]](https://github.com/crcollins/chemtools). This includes various utilities for parsing Gaussian log files, creating molecular structures, submitting jobs to Torque clusters, and predicting optoelectronic properties of benzobisazoles. These tools can be used through a django interface, or some of the tools can also just be used on the command line.\n\n\n[Here is a demo site.](http://gauss.crcollins.com/)\n\n\nDeploy\n------\n\nThis setup assumes you are on a machine with the apt package manager. This will proceed to install the required dependencies and setup an nginx server to serve chemtools. Once this is done, you should be able to see it in your browser at http://localhost/.\n\n    $ cd chemtools-webapp\n    $ source install.sh\n\nTo remove chemtools, run the following commands.\n\n    $ cd chemtools-webapp\n    $ source install.sh remove\n\nIn addition to the parameter given to install.sh, there are also three environment variables that get used. They are `INSTALL_USER`, `CHEMTOOLS_DIR`, and `HTTPS`. `INSTALL_USER` is used to set the user that chemtools will install with (if no value is given this will default to `USER`). , `CHEMTOOLS_DIR` sets the path where chemtools is located (by default this is set to be the current directory). `HTTPS` specifices whether or not to use the https nginx config or not. This defaults to the regular nginx config. By giving `HTTPS` any non null value it will use the https configuration.\n\n\nVagrant Deploy\n--------------\n\nThis assumes that you already have vagrant and virtualbox installed.\n\n    $ cd chemtools-webapp/vagrant\n    $ vagrant up\n    # Warning: This includes the test key from project/media/tests by default. This key MUST be removed if you plan on opening this server up to the internet. If you want to change the port, just change the value in the vagrant/Vagrantfile and reboot the vm.\n    Go to http://localhost:4567/\n\nTo spin up a vm from the local copy of chemtools-webapp can set the environmental variable `DEV` to `true`\n\n    $ DEV=true vagrant up\n\n\nDevelopment Setup\n-----------------\n\nThere are two ways to get a dev setup, either you can do a vagrant deployment, or you can run the install.sh script with the `dev` option.\n\n    $ cd chemtools-webapp\n    $ source install.sh dev\n    $ python manage.py runserver 0.0.0.0:8000\n    Go to http://localhost:8000/\n\nTo run the test server with ssl, you can run the following command:\n\n    $ python manage.py runsslserver\\\n        --key=project/media/tests/server.key\\\n        --certificate=project/media/tests/server.crt 0.0.0.0:8000\n    Go to https://localhost:8000/\n\nIf you want to get rid of the warning message when you connect to it, you can add the certificate to your browser's certificate manager.\n\n\nTest\n----\n\nCurrently, there are a few tests as a sanity check for some of the main features of chemtools. You can run them with the following command. Note: For some of the tests to pass they require a test Torque Cluster. This requirement can be satisfied using [this](https://github.com/crcollins/torquecluster) repository which contains a Vagrant setup of a basic cluster. NOTE: These tests also assume that the test cluster is at localhost port 2222.\n\n    $ python manage.py test account chem chemtools cluster data docs\n\nIf you have coverage.py installed (if not you can install with `pip install coverage`), you can also run the following commands to see which parts of the code are covered by the tests.\n\n    $ coverage run manage.py test account chem chemtools cluster data docs\n    $ coverage html\n\n\nDatabase\n--------\n\nThe database used can be changed in by going in project/settings.py and changing the DATABASE dictionary.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrcollins%2Fchemtools-webapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrcollins%2Fchemtools-webapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrcollins%2Fchemtools-webapp/lists"}