An open API service indexing awesome lists of open source software.

https://github.com/jvansan/todo_golang_angular

Todo Webapp
https://github.com/jvansan/todo_golang_angular

angular golang todolist tutorial

Last synced: 5 months ago
JSON representation

Todo Webapp

Awesome Lists containing this project

README

          

# Golang-Angular Tutorial

A simple, secure, Todo webapp built on a Go backend with an Angular frontend.

Requires an account and application from [auth0](https://auth0.com/)

Built following the tutorials at auth0.com/blog:

[Part 1 - The Backend - Developing and Securing Golang APIs](https://auth0.com/blog/developing-golang-and-angular-apps-part-1-backend-api/)

[Part 1 - auth0-blog Repo](https://github.com/auth0-blog/golang-angular)

To run the backend (It can also be compiled):

```
export AUTH0_API_IDENTIFIER=
export AUTH0_DOMAIN=.auth0.com

go run main.go
```

[Part 2 - The Front-end - Developing and Securing Angular Apps](https://auth0.com/blog/developing-golang-and-angular-apps-part-2-angular-front-end/)

To run frontend, more instructions in `/ui`:

```
cd ui
ng serve
```