Skip to content

Latest commit

 

History

History
72 lines (49 loc) · 828 Bytes

README.md

File metadata and controls

72 lines (49 loc) · 828 Bytes

Nuxt 3 Authentication Demo

Authentication demo web application with session based on Nuxt 3  

Environment

  • Node v16.0 above
  • Redis v7.0
  • MongoDB v6.0

Setup

Install data:

$ mongoimport --drop --db sampleDB --collection user --file data/user.json

Edit .env file:

SESSION_REDIS_URL=redis://localhost:6379/
MONGO_URL=mongodb://localhost:27017/sampleDB

Make sure to install the dependencies:

# yarn
yarn install

# npm
npm install

Development Server

Start the development server on http://localhost:3000

# yarn
yarn dev

# npm
npm run dev

Production

Build the application for production:

# yarn
yarn build

# npm
npm run build

Launch the application for production:

# yarn
yarn start

# npm
npm start

License

MIT