Contributions are very welcome and highly appreciated!
1 - First create a python development virtualenv
$ python -m venv venv
$ source venv/bin/activate
$ pip install -r requirements/base.txt -r requirements/dev.txt -r requirements/extra.txt2 - Install docker and docker-compose
Contributions for new features or fixes should have tests associated. To verify that all tests are green you can run a subset of tests targeting only Postgres.
1 - Start Postgres
$ docker-compose up -d2 - Run Postgres tests
$ nose2 -c setup.cfg -A '!mongo' testsYou can also use tox
$ tox -e postgres4 - Code Formatting
$ black flask_appbuilder tests
$ flake8 flask_appbuilder testsUsing Postgres
1 - Stop and delete Postgres volume, then restart
$ docker-compose down -v
$ docker-compose up -d2 - Export the connection string
$ export SQLALCHEMY_DATABASE_URI=postgresql+psycopg2://pguser:pguserpassword@0.0.0.0/app4 - To run a single test
$ nose2 -v tests.test_api.APITestCase.test_get_item_dotted_mo_notationNote
If your using SQLite3, the location of the db is: ./tests/app.db You can safely delete it, if you need to delete test data for example.
We want to keep Flask-AppBuilder safe for everyone. If you've discovered a security vulnerability please report to danielvazgaspar@gmail.com. Reporting security vulnerabilities through the usual GitHub Issues channel is not ideal as it will publicize the flaw before a fix can be applied.