jreynaud25 / FrameWork-back

Home Page:https://frame-work-back.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LinkedIn


Frame-work.app Backend

Getting Started

Before everything you have to create a .env file.

PORT=3000
FRONTEND_URL=http://localhost:5173
#FRONTEND_URL=https://frame-work-front.vercel.app
TOKEN_SECRET=
MONGODB_URI=
#MONGODB_URI=

CLOUDINARY_NAME=
CLOUDINARY_KEY=
CLOUDINARY_SECRET=

#GMAIL_PASSWORD=

Plugin routes

Here will be explained the routes made to work with the plugins

  • figma.routes.js
  • brand.routes.js

1. figma.routes.js

router.get("/:id/change", async (req, res) => {}

router.post("/:id/changeApplied", async (req, res) => {}

router.post("/create", async (req, res) => {}

router.post("/update", async (req, res) => {}

router.post("/createBrand", async (req, res) => {}

router.post("/:figmaId/gettingImagesURL", async (req, res) => {}

2. brand.routes.js

router.get("/all", async (req, res, next) => {}

router.get("/:figmaName", async (req, res, next) => {}

Frontend routes

1. designs.routes.js

router.get("/all", async (req, res, next) => {}

router.get("/owned", async (req, res, next) => {}

router.post("/", uploader.single("picture"), async (req, res, next) => {}

router.get("/:id", async (req, res, next) => {}

router.post("/:id", async (req, res, next) => {}

router.patch("/:id", uploader.array("pictures"), async (req, res, next) => {}

router.get("/notify/:id", async (req, res, next) => {}

router.delete("/:id", async (req, res, next) => {}

(back to top)

Contact

JRJR - @twitter_handle - email@email_client.com

Project Link: https://github.com/jreynaud25/Framework-backend

(back to top)

About

https://frame-work-back.vercel.app


Languages

Language:JavaScript 94.6%Language:HTML 3.2%Language:Dockerfile 2.2%