

Superset not showing Alert/Reports in "Settings" drop down
So I have installed Apache Superset 1.0.1 on an EC2 instance (in virtual environment).
Now, i created a file named ```superset_config.py``` which has the following content:
```
ENABLE_ALERTS =True
ENABLE_SCHEDULED_EMAIL_REPORTS = True
FEATURE_FLAGS = {
"ALERT_REPORTS": True,
"THUMBNAILS": True
}
```
After doing this, I add it to my pythonpath via : ```export PYTHONPATH="$PWD/superset_config.py"```
After this, I run ```superset init``` and then launch superset on a port. However I still cannot see the alerts and reports options in the srop down menu, as shown below:
[![enter image description here][2]][2]
[2]: https://i.stack.imgur.com/Ao1g6.png
What am I doing wrong, and what do I need to change?