- From the menu, Go to
Tools
->NuGet Package Manager
->Package Manager Console
- Follow Steps in commits to ready project for migrations
- Run
Enable-Migrations -ContextTypeName Jitter.Models.JitterContext
- In order to Create an initial migration ->
Add-Migration InitialCreate
- To apply that migration ->
Update-Database
Update-Database -TargetMigration $InitialDatabase
(Deletes all tables in database, but keeps Database file)- If you have a file with the name "InitialCreate1" delete it. If it's not there, no worries.
Add-Migration InitialCreate
(re-create InitialCreate migration file with you new models changes)Update-Database
(now apply the newly created migration)
This is the final capstone for this class.
Project Criteria:
- Pick a project you're at least midly excited about!
- This is the ultimate resume piece that you will be showing to employers, so take that into consideration.
- Backend must be fully tested.
- Must have Create, Read, Update and Delete operations.
Write tests that ensure Constants are persisted across multiple runs of your calculator. You do not have to have persisting Constants working in your calculator project (yet). However you must have the passing tests to prove you could.
Keep in mind, our end goal is
First Run:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 pound tilapia | |
1/2 pound Asparagus | |
Green Peas | |
Thai Basil | |
Green Curry Paste | |
Kaffir Lime Leaves (optional) | |
Lime Juice | |
Coconut Oil | |
Palm Sugar or Brown Sugar | |
Fish Sauce |
To reproduce the problem mentioned in the description of Issue #6382 and it's comments do the following:
- Vagrantfile
- minion config (placed in a directory
salt/
) - top.sls (placed in a directory
salt/states/
) - something.sls (placed in directory
salt/states/
; used to prove that a even the most trivial of states won't run)
- You should have a directory called
salt
which contains astates
subdirectory and theminion
config file provided below. The Synced Folder setting in the Vagrantfile requires it.
This is the final capstone for this class.
Project Criteria:
- Pick a project you're at least midly excited about!
- This is the ultimate resume piece that you will be showing to employers, so take that into consideration.
- Backend must be fully tested.
- Must have Create, Read, Update and Delete operations.