Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mr-ben-jeckson/cms-nest-api
- Owner: mr-ben-jeckson
- Created: 2024-09-07T10:53:59.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-14T18:37:36.000Z (2 months ago)
- Last Synced: 2024-09-15T08:38:06.917Z (2 months ago)
- Topics: aws-simple-storage-service, jwt-authentication, mysql, nestjs-backend, prisma-orm, swagger-ui, typescript
- Language: TypeScript
- Homepage:
- Size: 717 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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