This project is a starter app for getting started with VueJS + 8base! The app is pre-configured to use 8base user authentication and the GraphQL API, so you can immediately hop into building something awesome.
You'll need to create an 8base workspace and Authentication Profile. Once that's done... ALL you need to do is set some enironment variables!
To run the app, you're going to need to first install its dependencies.
$ npm install
- The .env file provides a template of the required environment variables. These variables are all collected from your workspace, and enable both authentication and api connectivity.
PORT=3000
VUE_APP_WORKSPACE_ENDPOINT=<YOUR_WORKSPACE_ENDPOINT>
VUE_APP_AUTH_PROFILE_ID=<YOUR_AUTH_PROFILE_ID>
VUE_APP_AUTH_CLIENT_ID=<YOUR_AUTH_CLIENT_ID>
VUE_APP_AUTH_DOMAIN=<YOUR_AUTH_DOMAIN>
NOTE: Create a .env.local
file to avoid commiting your environment variables!
- Run the app... seriously, just run it now.
npm run serve
- Visit http://localhost:8080 to test it out.
There are several awesome things that have been done in this application to help you get started. Let's take a look at them:
- User Authentication The app enables sign-in and sign-up functionality using 8base auth (auth0 under the hood). Plus, it gives an example of enforcing authentication at the router level using guards.
The relevant files are:
client/src/utils/auth.js
- Configure, initialize, and export the 8base auth client.client/src/store/modules/session.js
- Vuex manager for auth related state.client/src/App.vue
- View providing sign-in / sign-out buttons.client/src/router.js
- Example of auth checking router guard.
- GraphQL API The app utilizes an 8base workspace for accessing and updating it's data using the GraphQL API. The code for this is neatly wrapped into two modules that get used mainly within the Vuex modules. However, one example also exists in the "Profile" page of querying the API.
The relevant files are:
client/src/utils/api.js
- Configure apollo client for error handling, auth, and the workspace endpointclient/src/utils/graphql.js
- Build a library of GraphQL queries, mutations, and subscriptions.client/src/store/modules/session.js
- Executes queries against Api using module.client/src/views/Profile.vue
- Runs query in component (outside state manager)
- Styles (or not...) This project is totally unstyles, minus a few minor css classes. If you'd like to add your own styling, go for it! However, we didn't want your first few steps being to rip out a chosen CSS framework to begin implimenting another.
Feel welcome to fork this project and change it as you need, or submit a pull request with comments and improvements!