https://github.com/edo1z/auth0-study
Auth0 Study
https://github.com/edo1z/auth0-study
Last synced: 6 months ago
JSON representation
Auth0 Study
- Host: GitHub
- URL: https://github.com/edo1z/auth0-study
- Owner: edo1z
- Created: 2019-08-07T06:04:31.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T01:06:22.000Z (almost 3 years ago)
- Last Synced: 2025-02-08T01:19:46.637Z (8 months ago)
- Language: JavaScript
- Size: 2.37 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# auth0-study

## Project setup
```
yarn install
```
### Create .env.developmentCreate a file called .env.development and enter the following:
```
VUE_APP_AUTH0_DOMAIN = "xxxxxxxxxx.auth0.com"
VUE_APP_AUTH0_CLIENT_ID = "xxxxxxxxxxxxxxx"
VUE_APP_AUTH0_REDIRECT_URI = "http://localhost:8080/#/callback"
```### Compiles and hot-reloads for development
```
yarn run serve
```### Compiles and minifies for production
```
yarn run build
```### Run your tests
```
yarn run test
```### Lints and fixes files
```
yarn run lint
```### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).