-
Notifications
You must be signed in to change notification settings - Fork 197
Contribute and wire up setup
Lam Kieu edited this page Jul 26, 2019
·
1 revision
Setup the required fields in .env file in root folder
// .env
HTTP_ENDPOINT=https://your-endpoint
WS_ENDPOINT=wss://your-endpoint
In index.vue
the login process requires that the gql endpoint enables a mutation which returns a valid token:
mutation authenticateUser($email:String!,$password:String!){
authenticateUser(email: $email, password: $password) {
token
id
}
}
If your gql backend is prepared start running nuxt as follow
# npm install
# npm run dev