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.
-
To install python-flask and other dependencies I would suggest to use
virtualenv
. Installvirtualenv
viapip
:$ pip install virtualenv
-
Clone the current project
$ git clone https://github.com/amitasviper/techConf
-
Create a virtual environment for a project:
$ cd techConf $ virtualenv venv
-
To begin using the virtual environment, it needs to be activated:
$ source venv/bin/activate
-
To install all required dependencies, execute the following command
$ pip install -r requirements.txt
-
To run the application use following command.
$ python run.py
-
If you are done working in the virtual environment for the moment, you can deactivate it:
$ deactivate