-
Notifications
You must be signed in to change notification settings - Fork 1
Getting Started
JainalGandhi edited this page Aug 25, 2020
·
1 revision
- Ensure Node.js v12 and Yarn v1.2.x are installed and on the system path.
- Ensure ASP.NET Core 3.1.x is installed on on the system path.
- Ensure MariaDB 10.4 is installed, configured and running. Guide for linux systems
- Create a MariaDB database with name
capisso
. - Create a MariaDB user with username
efcoreuser@localhost
and passwordpassword
.
CREATE DATABASE capisso;
CREATE USER 'efcoreuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON `capisso`.* TO 'efcoreuser'@'localhost';
- In the server directory, run
dotnet run
. - In the client directory, run
yarn
followed byyarn start
- In the server directory, run
dotnet test
. - In the client directory, run
yarn test