https://github.com/mmirus/brain
Tasks/notes app backed for learning Go
https://github.com/mmirus/brain
Last synced: 3 months ago
JSON representation
Tasks/notes app backed for learning Go
- Host: GitHub
- URL: https://github.com/mmirus/brain
- Owner: mmirus
- Created: 2023-12-28T05:26:40.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-01-07T20:37:21.000Z (over 1 year ago)
- Last Synced: 2025-04-01T15:07:17.462Z (3 months ago)
- Language: Go
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# brain server
Simple server for the tasks/notes app brain.
Currently supports basic CRUD operations for tasks.
## Local dev setup
```sh
# Copy .env file containing for local dev auth credentials
cp env.template .env# Set up local cert
mkcert localhost
mkcert -install# Run the server
go run *.go
```