0.10.3 • Published 3 years ago

@pagexpress/pagexpress v0.10.3

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

Pagexpress

Fast, fully customizable headless CMS

Fullstack JS stack with NodeJS on backend and NuxtJS on the front. Simple to use and customize, with intuitive REST API. Admin panel allows to create components, pages, menu, all the rest available from the API.

Get Started

.env file config

Specify environment variables in .env file

DB_HOST=0.0.0.0
DB_PORT=27017
DB_USER=root
DB_PASS=root
APP_PORT=4000
API_URL=http://127.0.0.1:4000/v1
PAGEXPRESS_JWT_PRIVATE_KEY=mysecretword

Run

Docker mongodb image

docker-compose up

Server API in dev mode with nodemon

yarn api:dev

Server API for production

yarn api:prod

Run pagexpress in dev mode

yarn dev

For production

yarn build
yarn start