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
- Host: GitHub
- URL: https://github.com/jvansan/todo_golang_angular
- Owner: jvansan
- License: unlicense
- Created: 2018-10-30T19:31:18.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-30T19:52:52.000Z (over 7 years ago)
- Last Synced: 2025-09-01T20:06:25.770Z (5 months ago)
- Topics: angular, golang, todolist, tutorial
- Language: TypeScript
- Size: 109 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```