This project consists of a basic Hasura project with a simple AngularJS app running on it. Once this app is deployed on a Hasura cluster, you will have the app running at https://www.<cluster-name>.hasura-app.io
This is the right place to start if you are planning to build or want to learn to build an AngularJS app with Hasura.
- Introduction
- Quickstart
- Adding your own AngularJS code
- Data API
- Auth API
- Filestore API
- Local development
- FAQ
This quickstart project comes with the following by default:
-
A basic Hasura project
-
Two tables
article
andauthor
with some dummy data
Follow this section to get this project working. Before you begin, ensure you have the latest version of hasura cli tool installed.
$ hasura quickstart hello-angularjs
$ cd hello-angularjs
The above command does the following:
- Creates a new folder in the current working directory called
hello-angularjs
- Creates a new free Hasura cluster for you and sets that cluster as the default cluster for this project
- Initializes
hello-angularjs
as a git repository and adds the necessary git remotes.
To deploy the project:
$ git add .
$ git commit -m "Initial Commit"
$ git push hasura master
When you push for the first time, it might take sometime. Next time onwards, it is really fast.
Once the above commands are executed successfully, head over to https://www.<cluster-name>.hasura-app.io
(in this case https://www.h34-excise98-stg.hasura-app.io
) to view your app.
The AngularJS microservice[1] sample code is inside the microservices/www/app
directory. You can copy all your existing AngularJS code directly inside this directory, and start deploying it to Hasura cluster.
Copy all your exising AngularJS source code in microservices/www/app
directory or replace the microservices/www/app
directory with your app directory. Ensure that the structure of the directory is coherent with the current structure.
$ git add .
$ git commit -m "Added my angularJS code"
$ git push hasura master
Now your application should be running at: https://www.<cluster-name>.hasura-app.io
[1] a microservice is a running application on the Hasura cluster. This could be an API, a web app, a Javascript app etc.
Every Hasura cluster comes with an api console that gives you a GUI to test out the BaaS features of Hasura. To open the api console
$ hasura api-console
Hasura provides ready to use data apis to make powerful data queries on your tables. This means that you have ready-to-use JSON apis on any tables created. The url to be used to make these queries is always of the type: https://data.cluster-name.hasura-app.io/v1/query
(in this case https://data.h34-excise98-stg.hasura-app.io
)
As mentioned earlier, this quickstart app comes with two pre-created tables author
and article
.
author
column | type |
---|---|
id | integer NOT NULL primary key |
name | text NOT NULL |
article
column | type |
---|---|
id | serial NOT NULL primary key |
title | text NOT NULL |
content | text NOT NULL |
rating | numeric NOT NULL |
author_id | integer NOT NULL |
Alternatively, you can also view the schema for these tables on the api console by heading over to the tab named data
as shown in the screenshots below.
![alt text][data1] ![alt text][data2]
This means that you can now leverage the Hasura data queries to perform CRUD operations on these tables.
For eg, to fetch a list of all articles from the article table, you have to send the following JSON request to the data api endpoint -> https://data.cluster-name.hasura-app.io/v1/query
(replace cluster-name
with your cluster name)
{
"type": "select",
"args": {
"table": "article",
"columns": [
"id",
"title",
"content",
"rating",
"author_id"
]
}
}
To learn more about the data apis, head over to our docs
Every app almost always requires some form of authentication. This is useful to identify a user and provide some sort of personalised experience to the user. Hasura provides various types of authentication (username/password, mobile/otp, email/password, Google, Facebook etc).
You can try out these in the API EXPLORER
tab of the api console
. To learn more, check out our docs
Sometimes, you would want to upload some files to the cloud. This can range from a profile pic for your user or images for things listed on your app. You can securely add, remove, manage, update files such as pictures, videos, documents using Hasura filestore.
You can try out these in the API EXPLORER
tab of the api console
. To learn more, check out our docs
There might be cases where you might want to perform some custom business logic on your apis. For example, sending an email/sms to a user on sign up or sending a push notification to the mobile device when some event happens. For this, you would want to create your own custom microservice which does these for you on the endpoints that you define.
This quickstart comes with one such custom service made using AngularJS. Check it out in action at https://www.cluster-name.hasura-app.io
. Currently, it just returns a welcome message at that endpoint.
In case you want to use another language/framework for your custom microservice. Take a look at our docs to see how you can add a new custom microservice.
Everytime you push, your code will get deployed on a public URL. However, for faster iteration you should locally test your changes.
Follow these steps to test out your app locally
$ cd microservices/www/
$ docker build -t angularjs:<tag> .
$ docker run -d -p 8080:8080 angularjs:<tag>
Your app will be running on port 8080.
The project (a.k.a. project directory) has a particular directory structure and it has to be maintained strictly, else hasura
cli would not work as expected. A representative project is shown below:
.
├── hasura.yaml
├── clusters.yaml
├── conf
│ ├── authorized-keys.yaml
│ ├── auth.yaml
│ ├── ci.yaml
│ ├── domains.yaml
│ ├── filestore.yaml
│ ├── gateway.yaml
│ ├── http-directives.conf
│ ├── notify.yaml
│ ├── postgres.yaml
│ ├── routes.yaml
│ └── session-store.yaml
├── migrations
│ ├── 1504788327_create_table_user.down.yaml
│ ├── 1504788327_create_table_user.down.sql
│ ├── 1504788327_create_table_user.up.yaml
│ └── 1504788327_create_table_user.up.sql
└── microservices
└── www
├── app/
├── k8s.yaml
└── Dockerfile
This file contains some metadata about the project, namely a name, description and some keywords. Also contains platformVersion
which says which Hasura platform version is compatible with this project.
Info about the clusters added to this project can be found in this file. Each cluster is defined by it's name allotted by Hasura. While adding the cluster to the project you are prompted to give an alias, which is just hasura by default. The kubeContext
mentions the name of kubernetes context used to access the cluster, which is also managed by hasura. The config
key denotes the location of cluster's metadata on the cluster itself. This information is parsed and cluster's metadata is appended while conf is rendered. data
key is for holding custom variables that you can define.
- name: h34-ambitious93-stg
alias: hasura
kubeContext: h34-ambitious93-stg
config:
configmap: controller-conf
namespace: hasura
data: null