- C#
- .NET
- HTML
- CSS
- MySQL Workbench
- Clone this repo.
- Launch MySQL Workbench and access the Administration section in the Navigator.
- Within the Administration window, select Data Import/Restore.
- In the Import Options, choose "Import from Self-Contained File."
- Locate the SQL file, named
parcel_shipment.sql, within the project's root directory. - Under "Default Schema to be Imported To," create a new schema.
- Assign a suitable name for your database or simply use
parcel_shipment.sqlas the schema name. - Confirm your selection by clicking "OK".
- Proceed to the "Import Progress" tab and initiate the import process by selecting "Start Import" located at the bottom right corner of the window.
- Once the import is completed, reopen the Navigator, navigate to the "Schemas" tab, and perform a right-click action. Choose "Refresh All" to ensure the changes are reflected.
- Open your shell (e.g., Terminal or GitBash) and navigate to this project's production directory called
Parcels. - Within the production directory
Parcels, create a new file entitledappsettings.json. - Within
appsettings.json, enter the following code:
{
"ConnectionStrings": {
"DefaultConnection": "Server=localhost;Port=3306;database={DATABASE};uid={USERNAME};pwd={PASSWORD};",
}
}Be sure to replace the
{DATABASE},{USERNAME}and{PASSWORD}fields with your own relevant information. Do not include the curly brackets.
- In the production directory, you can enter the following command
dotnet watch run.
This command will start the project in development mode with a watcher.
No known bugs.
Copyright (c) 2023 Jake Elsberry, Jonathan Cheng, Jeremy Josol
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.