../allredlib
Private library
Clone with
git clone git://git.awl.red/neallred/allredlib

allredlib📎

Allredlib

local dev📎

Reset DB📎

migrate migrate-down --files /allredlib/migrations --connection '/.allredlib.db' migrate migrate-up --files /allredlib/migrations --connection '/.allredlib.db'

UPDATE schema_migrations set dirty=false;

Run application server📎

pushd webapp
bun i
bun run build-static
popd 
go run cmd/server/main.go cmd/server/static.go

Create user📎

curl -X POST -d '{"username": "nn", "password": "password"}' http://localhost:8080/api/v1/user/signup curl -X POST -d '{"username": "nn", "password": "password"}' http://localhost:8080/api/v1/user/login curl --cookie "$ALLREDLIB_COOKIE" http://localhost:8080/api/v1/user/whoami

Promote user to admin (assuming roles are the same as in the migrations)📎

sqlite3 ~/.allredlib.db "INSERT INTO users_role (users_id, role_id, grantor_id) VALUES (1, (SELECT id FROM role WHERE role='SERVER_ADMIN'), 1);"

Create a GUI admin through the application server📎

TBD

Update graphql schema📎

go run github.com/99designs/gqlgen generate

.gitignore 2 years ago
README.md 2 years ago
cmd
migrate
main.go 2 years ago
server
main.go 2 years ago
static.go 2 years ago
dev
dev-seed.sql 2 years ago
go.mod 2 years ago
go.sum 2 years ago
gqlgen.yml 2 years ago
graph
generated.go 2 years ago
model
models_custom.go 2 years ago
models_gen.go 2 years ago
queries.go 2 years ago
resolver.go 2 years ago
schema.graphqls 2 years ago
schema.resolvers.go 2 years ago
str.go 2 years ago
logging
logging.go 2 years ago
tools.go 2 years ago
user
user.go 2 years ago
webapp
.gitignore 2 years ago
README.md 2 years ago
bun.lockb 2 years ago
index.html 2 years ago
package.json 2 years ago
public
favicon.ico 2 years ago
src
app.tsx 2 years ago
assets
book.svg 2 years ago
change_session.tsx 2 years ago
errors
404.tsx 2 years ago
genres.ts 2 years ago
index.css 2 years ago
index.tsx 2 years ago
pages
about.tsx 2 years ago
book_details.tsx 2 years ago
book_new.tsx 2 years ago
books.tsx 2 years ago
creator_details.tsx 2 years ago
creator_new.tsx 2 years ago
creators.tsx 2 years ago
genres_new.tsx 2 years ago
home.tsx 2 years ago
login.tsx 2 years ago
series_new.tsx 2 years ago
signup.tsx 2 years ago
roles.ts 2 years ago
routes.ts 2 years ago
select_many.tsx 2 years ago
user_info.tsx 2 years ago
tsconfig.json 2 years ago
vite.config.ts 2 years ago