Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tendant/htmx-demo
https://github.com/tendant/htmx-demo
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/tendant/htmx-demo
- Owner: tendant
- Created: 2024-01-22T21:43:04.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-01-23T19:49:07.000Z (11 months ago)
- Last Synced: 2024-10-12T13:31:21.425Z (2 months ago)
- Language: CSS
- Size: 17 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Start postgres using docker
cd docker/
./start-postgres.sh
# Create databaseCREATE Role htmx_demo WITH PASSWORD 'pwd';
grant htmx_demo to postgres;
CREATE DATABASE htmx_demo_db ENCODING ‘UTF8’ OWNER htmx_demo;
GRANT ALL PRIVILEGES ON DATABASE htmx_demo_db TO htmx_demo;
ALTER ROLE htmx_demo WITH LOGIN;
# Migrate databasemake migrate
# Create new migrationmake migration-create name="training"