- Change into the server directory
cd server
- Create a .env file and replace the values from your Strapi Configuration
HOST=0.0.0.0
PORT=1337
APP_KEYS="toBeModified1,toBeModified2"
API_TOKEN_SALT=tobemodified
ADMIN_JWT_SECRET=tobemodified
JWT_SECRET=tobemodified
- Install the dependencies
npm install
- Start the server
npm run start
- Change into the client directory ( from / )
cd app
- Install the depencies
npm install
- Run the client
npm run start