# wpdAuth.load module This module is responsible to load the organizations dump from [Cemaden Educations web site](http://educacao.cemaden.gov.br/site/organization/). The dump is loaded from the csv file [here]() in this folder following the [ddl structure]() to the entity 'educemaden_organizations'. In order to avoid SQL errors, there are no indexes on 'educemaden_organizations' entity, and for each load this entity should be truncated. # Dependencies - Make sure the setup was finished successfully according to the instruction in the root [README file](). # How to run this load Once the project setup was finished successfully, follow the steps below: - Start the PostgreSQL and run the scripts to create the database and get the load data. ```console $ psql -d wpdauth -c "TRUNCATE TABLE educemaden_organizations;" $ psql -c wpdauth "COPY educemaden_organizations FROM 'educacao.cemaden-organization-dump.csv' DELIMITER ',' CSV HEADER;" $ psql -d wpdauth -c "SELECT * FROM educemaden_organizations;" ```