docker-compose up
- Open the command prompt and cd to the
Database.EntityFramework
project and rundotnet ef migrations add InitialCreate
. - Run
Update-Database
from the package manager console after selectingDatabase.EntityFramework
project.- Not supported on MAC - Workaround
Run docker-compose down
to delete all existing tables and redo step 1 & 2.
- Download MySql Workbench
- Connect using these credentials
- Database=db
- Uid=root
- Pwd=mysql
- Run
yarn install
in the /WebApplication directory to install dependency libs - Run
yarn build
in the same directory to build using webpack
- Run
yarn test
to run all tests (yarn test {testname}
to run individual test)
To add any new dependencies in the client side, please use yarn add
(not npm
) and don't forget to commit the updated
yarn.lock
file.