Coder Social home page Coder Social logo

dcmdb's Introduction

dcmdb.org

DCMDB is a DICOM Search Engine and Educational Tool.

This website was developed by Eric Bower . The mission of this service is to create a repository of easy to access, publicly available, anonymous medical diagnotic images. With this repository we also wish to create a social platform for discussion, teaching, and learning.

Contributing

Volunteers are welcome to help make the service run more efficiently, effectively.
This project was developed in Python, the Django framework, and Postgresql.
The production server is hosted by Amazon on an Ubuntu EC2 virtualized server.
It uses gunicorn as the WSGI HTTP Server and nginx as the Proxy HTTP Server.

INSTALL

HOW TO DEVELOP ON DEBIAN-DIST (UBUNTU)

Install python dependencies

$ pip install -r ./conf/dependencies.txt

Install PostgreSQL

$ apt-get install postgresql postgresql-contrib
Configure PostgreSQL
$ sudo su - postgres
$ createdb dcmdb
$ createuser -P
$ psql
postgres=# GRANT ALL PRIVILEGES ON DATABASE dcmdb TO username;
postgres=# \q
$ logout

Create dcmdb/settings_env.py file

DEBUG = True

DATABASES = {
  "default": {
    "ENGINE": "django.db.backends.postgresql_psycopg2",
    "NAME": "dcmdb",
    "USER": "postgres",
    "PASSWORD": ""
  }
}

EMAIL_HOST_USER = ''
EMAIL_PASS = ''
$ python manage.py syncdb
$ python manage.py migrate
$ python manage.py runserver

Then, in browser http://localhost:8000

There is one django group that is used as a flag for email validation

If you get an error like "GROUP not found" when going to /users:

Done!

dcmdb's People

Contributors

neurosnap avatar jamakazie avatar

Watchers

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