-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
Candice edited this page Aug 4, 2025
·
5 revisions
npm install
# or
yarnAPP_KEYS="toBeModified1,toBeModified2"
API_TOKEN_SALT=tobemodified
ADMIN_JWT_SECRET=tobemodified
JWT_SECRET=tobemodified
TRANSFER_TOKEN_SALT=tobemodified
# Development
HOST=0.0.0.0
PORT=1337
# Database
DATABASE_CLIENT=sqlite
DATABASE_FILENAME=.tmp/data.db
JWT_SECRET=tobemodifiedAPP_KEYS, API_TOKEN_SALT and ADMIN_JWT_SECRET are required in order to run the application locally, and can set to random strings.
See .env.example
Build your admin panel. Learn more
npm run build
# or
yarn buildStart your Strapi application with autoReload enabled. Learn more
npm run develop
# or
yarn developStart your Strapi application with autoReload disabled. Learn more
npm run start
# or
yarn start