Skip to content
/ CIW Public

Processes and validates new contractor information worksheets, securely stores the new data, then initiates sponsorship/adjudication.

Notifications You must be signed in to change notification settings

GSA/CIW

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CIW

Description:

The CIW application retrieves all unprocessed files based on the list of unprocessed files in the Upload table in the database. It will then convert these files to csv, import the data, perform validation, and database checks. If all fields pass it will insert the data into the database, start the sponsorship/adjudication process. It will then send out appropriate emails to indicate pass/fail status of the upload procedure and directions on next steps.

Nuget packages and other dll's utilized

Initial Setup

Default config setup

The repository contains a web config that points to external config files. These external config files not controlled by version control will need to be created and configured prior to running the application. The files required and the default configuration can be found below. For those on the development team, additional details can be found in the documentation on the google drive in the GIT team drive.

  • Things to do before your first commit

    • Make a new branch for development. All pre-existing branches are protected and cannot be pushed to directly.
    • You can publish a new branch and do pull requests to have your changes incorporated into the project.
    • Once you have created a new branch you will need to create the config files. (see below for more info on this)
    • Default version of these files are provided in the repo with the .example extension
    • Copy these files into the project bin\Debug folder and change the extension to .config using the previous filename
    • Or create new files that contain the code as seen below and place them in the bin\Debug folder
    • Do not push your config files to the repository. Pull requests that include these files will be rejected.
  • Current config files that will need to be added.

    • ConnectionStrings.config
    • AppSettings.config
  • Default settings for these files will follow this line

    • ConnectionStrings.config file should contain the following lines.
    <connectionStrings>
    <add name="connection name" connectionString="database connection string" />
    </connectionStrings>
    • AppSettings.config should contain the following lines.
    <appSettings>
    <add key="DEBUGMODE" value="false" />
    <add key="VERSION" value="V1"/>
    <add key="SMTPSERVER" value="smtp.server.com" />
    <add key="DEFAULTSUBJECT" value="Automated CIW Process" />
    <add key="SUMMARYEMAIL" value="replaceme@example.com" />
    <add key="DEFAULTEMAIL" value="replaceme@example.com" />
    <add key="ONBOARDINGLOCATION" value="onboarding folder path"/>
    <add key="EMAILTEMPLATESLOCATION" value="email template folder path" />
    <add key="CIWPRODUCTIONFILELOCATION" value="production folder path" />
    <add key="CIWDEBUGFILELOCATION" value="debug folder path" />
    <add key="CCEMAIL" value="email address" />
    <add key="BCCEMAIL" value="email address" />
    <add key="FASEMAIL" value="replaceme@example.com"/>
    <add key="CHILDCAREEMAIL" value="replaceme@example.com" />
    <add key="TEMPFOLDER" value="temp folder path" />
    <add key="Salt" value="salt" />
    <add key="EPass" value="epass" />
    <add key="ClientSettingsProvider.ServiceUri" value="" />
    </appSettings>

Usage

CIW V1 files can be inserted into the CIWDEBUGFILELOCATION folder, then set debug to true and you can process these files by starting the application. Note that usage of the application will require access to a database with a schema that is mirrored from the current production database.

Contributing

Fork this repository, make changes in your fork, and then submit a pull-request, remembering not to upload any system specific configuration files, PII, or sensitive data of any type.

Credits

GSA

About

Processes and validates new contractor information worksheets, securely stores the new data, then initiates sponsorship/adjudication.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published