Skip to content

ppratakk/vercel-express

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vercel-Express

Vercel Express and UI Webapp Example.

Live Demo - https://vercel-express-ngduc.vercel.app

Set up & Deploy with Vercel

Star and clone this repo, update package.json with your information (project name, your name, etc.).

$ npm install vercel -g
$ npm install
$ vercel
  • Vercel will generate a ".vercel" directory, don't share or commit this one!
  • After deploying, open your URL like this:
  • Build your source directory, then output to "app/build" (Backend) and "ui/buid" (Frontend).
    • Some boilerplate generator output the built files to "dist" instead of "build", so update your vercel.json accordingly.

Code

Backend

Frontend

  • Map API routes (/api/...) and static (UI) routes (/...).
  • Environment variables - examples:
    • $ vercel secrets add my-mongodb-uri mongodb+srv://<user>:<password>@clusteridxxx.mongodb.net/<database-name>?retryWrites=true
    • add "env" to vercel.json { "env": { "MONGODB_URI": "@my-mongodb-uri" }, ... }

Links