Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mr-ben-jeckson/cms-nest-api

Server Side App for Content Management System using NestJS Framework
https://github.com/mr-ben-jeckson/cms-nest-api

aws-simple-storage-service jwt-authentication mysql nestjs-backend prisma-orm swagger-ui typescript

Last synced: 3 days ago
JSON representation

Server Side App for Content Management System using NestJS Framework

Awesome Lists containing this project

README

        


Nest Logo

# Welcome to Nest CMS server!
Nest-CMS-api is a fully REST api server for content management system using Prisma ORM with Mysql Database.

## For NestJS Documentation
Visit the [NestJS Documentation](https://docs.nestjs.com) to learn more about the framework.

### Installation

```bash
# download
$ mkdir your project // create new folder
$ git clone [email protected]:mr-ben-jeckson/cms-nest-api.git

# installation
$ cd your-project-directory
$ npm install

# perparation
$ cat .env.example // copy .env.example content
$ nano .env // create new .env file

# create new mysql database and set DATABASE_URL in .env
$ npx migrate dev
$ npm run seed

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod