Welcome to manadu documentation

# A web based conference management tool

This project is incomplete and NOT suitable for production.

Prerequisite
# Linux/Mac/Windows
1. Python 3.7.x
2. PostgreSQL 11.x

Installation
# On local machine for testing
1. Download the code from https://github.com/rignova/manadu
2. Create a virtual environment (using Python 3.7.x) and install packages listed in manadu/requirements.txt
3. Create a database in PostgreSQL 11.x
4. Create a .env file in manadu/manadu/ directory with following details

            
            SECRET_KEY=''
            DEBUG='False'

            DB_ENGINE='django.db.backends.postgresql'
            DB_NAME=''
            DB_USER=''
            DB_PASSWORD=''
            DB_HOST='127.0.0.1'
            DB_PORT='5432'
            
        

5. Activate the virtual Python
6. Run python manage.py migrate
7. Run python manage.py runserver
8. Open localhost:8000/setup/ in your browser
9. Enter the details in Setup form and CREATE CONFERENCE