Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bwhtdev/jwt-auth-app
https://github.com/bwhtdev/jwt-auth-app
alpinejs astro docker golang jwt nginx postgres svelte tailwindcss
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bwhtdev/jwt-auth-app
- Owner: bwhtdev
- Created: 2024-10-16T16:38:14.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2024-10-16T18:07:41.000Z (2 months ago)
- Last Synced: 2024-10-30T01:03:58.112Z (about 2 months ago)
- Topics: alpinejs, astro, docker, golang, jwt, nginx, postgres, svelte, tailwindcss
- Language: Go
- Homepage:
- Size: 65.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jwt-auth-app
### Command to prepare env vars
```
touch .env
ln .env frontend/.env
ln .env backend/.env
touch db/password.txt
```### Commands to run (locally)
```
# make postgres db
docker run postgres...# run backend
go run backend/main.go# run frontend
cd frontend && pnpm i && pnpm start
```### Commands to run (on deployment)
```
docker compose up --build -d
```