Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 1.36 KB

README.md

File metadata and controls

49 lines (36 loc) · 1.36 KB

TechConf

N|Solid

TechConf is a slack app which helps in finding technical conferences in a region. It also notifies about the upcoming conferences in advance on your slack channel so that you don't miss one.

TechConf is built on python-flask. Mongodb for storing conference details.

TechConf is open source with a public repository on GitHub.

Installation

  1. To install python-flask and other dependencies I would suggest to use virtualenv. Install virtualenv via pip:

    $ pip install virtualenv
  2. Clone the current project

    $ git clone https://github.com/amitasviper/techConf
  3. Create a virtual environment for a project:

    $ cd techConf
    $ virtualenv venv
  4. To begin using the virtual environment, it needs to be activated:

    $ source venv/bin/activate
  5. To install all required dependencies, execute the following command

    $ pip install -r requirements.txt
  6. To run the application use following command.

    $ python run.py
  7. If you are done working in the virtual environment for the moment, you can deactivate it:

    $ deactivate