Steps for run the web-application
-
Clone this repository
-
Please create in root directory file
.env
with the contents below and replace words "user" and "password" on own.
API_URL="http://localhost:3000/api/graphql" DATABASE_URL="mysql://user:passworw@localhost:3306/nextjs-shop" DATABASE_USER="user" DATABASE_PASSWORD="password" DATABASE_NAME="nextjs-shop" DATABASE_HOST="127.0.0.1" DATABASE_PORT=3306 DATABASE_DIALECT="mysql"
-
Install dependencies
npm i
-
Create DB and Tables in MySql
npm run migration
-
Run the web-application in development environment
npm run dev
By default run on http://localhost:3000/