https://github.com/samvera/avalon-next
Brochure static site for Avalon Media System
https://github.com/samvera/avalon-next
contentful-js-sdk nextjs playwright-tests tailwindcss
Last synced: about 1 month ago
JSON representation
Brochure static site for Avalon Media System
- Host: GitHub
- URL: https://github.com/samvera/avalon-next
- Owner: samvera
- Created: 2024-07-09T18:05:53.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-20T18:35:47.000Z (over 1 year ago)
- Last Synced: 2025-01-06T11:45:13.056Z (over 1 year ago)
- Topics: contentful-js-sdk, nextjs, playwright-tests, tailwindcss
- Language: TypeScript
- Homepage: https://samvera.github.io/avalon-next/
- Size: 1.63 MB
- Stars: 0
- Watchers: 77
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Avalon Static Site
This repo is a [Next.js](https://nextjs.org/) static site project providing information about the Hyku application and ecosystem. It will be a static site that will be deployed on Github Pages.
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
## Deployment
This site will be deployed on to Github Pages as a static site. To do a local build of the site, run:
```bash
pnpm build
```
## Testing
This site will be tested using [Playwright](https://playwright.dev/docs). Tests are located in the `tests` directory. To run tests, run:
```bash
# Run tests in headless mode
pnpm test
# Run tests in interactive UI mode
pnpm test:ui
```
## Code Quality
To ensure code quality, this site will use ESLint and Prettier. To format project code locally, run:
```bash
pnpm format
```