Skip to content

An application to help run a book store

Notifications You must be signed in to change notification settings

dylants/bookstore

Repository files navigation

bookstore

An application to help run a book store.

bookstore

Getting Started

This app uses bun for dependency management and script execution.

  1. Install dependencies
$ bun install
  1. Setup the database

  2. Start the application

$ bun dev

Database

This project utilizes Prisma for its ORM, and expects a PostgreSQL database instance.

The database schema is stored in the schema.prisma file.

Setup Postgres

Install PostgreSQL and populate the .env file with the correct DATABASE_URL string to connect to PostgreSQL. Some articles to help setup:

The DATABASE_URL should be populated as such:

DATABASE_URL="postgresql://USER:PASSWORD@HOST:PORT/bookstore"

Run Migrations

To run migrations (note: this will automatically run the seed script after migrations):

$ npx prisma migrate dev

or if you have an .env.local file:

$ npx dotenv -e .env.local -- prisma migrate dev

Create New Migration

To create a new migration (and run it):

$ npx prisma migrate dev --name <update name>

Seeds

Database seeds are found in the seed script directory.

The following commands require an .env.local file with the DATABASE_URL.

To run the seed script to generate fake data:

$ bun db:seed

Reset the database, re-run migrations, and re-seed with fake data:

$ bun db:reset

Overrides

The seed script to generate fake data provides values for the number of entities to create. These can be overridden via the environment variables:

SEED_NUM_VENDORS
SEED_NUM_BOOKS

For instance, to set the number of Books to create to 5, set the environment variable SEED_NUM_BOOKS=5 prior to running the seed script.

Square

This application makes use of the Square API and SDK, specifically Square Terminal Checkout as a Point of Sale solution. For more information, see: https://developer.squareup.com/reference/square/terminal-api.

Environment Variables

The following environment variables are required when using Square:

  • SQUARE_ACCESS_TOKEN: The Square environment access token
  • SQUARE_DEVICE_ID: The unique ID of the device used for Square Terminal Checkout

Square Sandbox

Testing is available for Square via the Sandbox environment. In this environment, device IDs are used to simulate scenarios.

For Terminal API Checkout see: https://developer.squareup.com/docs/devtools/sandbox/testing#terminal-api-checkouts

Logging

Pino logger is setup to use within the app. Configuration can be found in the logger.ts file.

Tests

Unit Tests

Lint and Jest tests are run during CI. These unit tests are stored along side the source code.

To run the tests:

$ bun run test

To run tests in watch mode:

$ bun run test:watch

Playwright e2e Tests

Playwright tests are stored in tests. Some tests require the app to be setup in a specific manner (such as Square sandbox with a specific device ID). See the tests for more details.

Note that these e2e tests are not run via the GitHub CI actions, since they require specific setup. They can be run locally, manually:

To run the tests:

$ bun playwright test

To run the tests with the Playwright UI:

$ bun playwright test --ui

To run the full e2e tests, which !!resets the database!!, applies seeds for CI, then runs the playwright e2e tests:

$ bun run test:e2e

Storybook

This app uses Storybook to demo UI components.

To run storybook:

$ bun storybook

About

An application to help run a book store

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Languages