https://github.com/authgear/authgear-example-vue
https://github.com/authgear/authgear-example-vue
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/authgear/authgear-example-vue
- Owner: authgear
- Created: 2022-08-24T08:41:52.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-12-08T16:49:12.000Z (over 1 year ago)
- Last Synced: 2024-12-29T08:21:39.347Z (over 1 year ago)
- Language: Vue
- Size: 46.9 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting Started with Authgear Vue Tutorial Demo App
This repo is the sample code of this tutorial: https://docs.authgear.com/tutorials/spa/vue
You can follow the tutorial to learn how to integrate Authgear with your Vue single page applications.
## Environment setup
Setup the `endpoint` and `clientID` variables in a `.env` file on the root directory of your project using the following fields:
````
VITE_AUTHGEAR_CLIENT_ID=your Authgear app client id
VITE_AUTHGEAR_ENDPOINT=your Authgear project URL
VITE_AUTHGEAR_REDIRECT_URL=http://localhost:4000/auth-redirect
````
Ensure to add http://localhost:4000/auth-redirect as a redirect URI for your application in Authgear Portal.
## Available Scripts
In the project directory, you can run:
### `npm run dev`
Runs the app in the development mode.\
Open [http://localhost:4000](http://localhost:4000) to view it in the browser.
The page will reload if you make edits.\
You will also see any lint errors in the console.
### `npm run build`
Builds the app for production to the `dist` folder.\
It correctly bundles Vue in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!
### `npm run preview`
Preview the app that built by `npm run build` to simulate the view in production!