Skip to content

Running Project

Anton Larionov edited this page Apr 3, 2023 · 1 revision

🚀 START PROJECT

Install All Dependencies

# backend
cd backend
npm install
npm run build

# frontend
cd frontend
npm install

To backend you need to add .env file with random symbols APP_KEYS and API_TOKEN_SALT

All info can be found in .env.example file.


Also to start project with existing data objects and relations, it is important to import configuration file.

gums.tar.gz.enc # Файл конфигурации
gums # encription key

Importing project data

cd backend 
npm run strapi import -- -f gums.tar.gz.enc --key gums


Running project

# backend
cd backend
npm run develop

# frontend
cd frontend
npm start