No description
  • TypeScript 93%
  • CSS 4%
  • Dockerfile 2.2%
  • JavaScript 0.8%
Find a file
Nathan Price ebac422653
All checks were successful
Release / release (push) Successful in 1m23s
added instructions for versioning
2025-11-10 11:21:14 -05:00
.forgejo/workflows ci(workflow): disable pnpm build step in release workflow 2025-09-14 20:00:42 -04:00
.vscode feat: integrate semantic-release with Gitea support 2025-08-31 20:28:16 -04:00
app added search params 2025-11-10 11:20:26 -05:00
components pagination now passes a params obj 2025-11-10 11:20:59 -05:00
hooks Feat: Search (#3) 2025-10-10 15:17:11 +00:00
lib Feat: Search (#3) 2025-10-10 15:17:11 +00:00
public Feat: Search (#3) 2025-10-10 15:17:11 +00:00
.dockerignore Add .foregjo to .dockerignore file 2025-08-31 19:33:07 -04:00
.gitignore Feat: Search (#3) 2025-10-10 15:17:11 +00:00
auth.ts refactor(auth): add types for JWT and session callbacks in NextAuth configuration 2025-09-07 17:56:28 -04:00
CHANGELOG.md chore(release): 1.6.2 [skip ci] 2025-11-10 16:16:45 +00:00
components.json Alpha 2025-08-30 21:43:47 -04:00
docker-compose.yml comment out sensitive environment variables and change exposed port in docker setup 2025-09-14 19:36:03 -04:00
Dockerfile comment out sensitive environment variables and change exposed port in docker setup 2025-09-14 19:36:03 -04:00
eslint.config.mjs Alpha 2025-08-30 21:43:47 -04:00
LICENSE chore: add license 2025-09-14 23:54:08 -04:00
next.config.ts fix(config): allow production builds to complete with ESLint errors 2025-10-10 11:41:18 -04:00
package-lock.json Alpha 2025-08-30 21:43:47 -04:00
package.json chore(release): 1.6.2 [skip ci] 2025-11-10 16:16:45 +00:00
pnpm-lock.yaml feat(components): add FeatureCarousel component for the homepage 2025-09-07 17:30:45 -04:00
postcss.config.mjs Alpha 2025-08-30 21:43:47 -04:00
README.md added instructions for versioning 2025-11-10 11:21:14 -05:00
schema.prisma push 2025-09-04 20:39:53 -04:00
tsconfig.json Initial commit from Create Next App 2025-05-26 13:07:13 -04:00

omeka-cover

Deployment

# first time
git clone ssh://git@git.modernleft.org/AAC/omeka-cover.git
# update
git fetch

git checkout v1.6.1 # or latest
docker compose build

Development

Versioning

Commit messages control the CI semantic versioning. Examples:

0.0.0 <MAJOR>.<MINOR>.<PATCH>

fix: correct a bug # patch
feat: add a new feature # minor
refactor: a breaking change # major

Commit message types

Other types of commit messages do not affect versioning:

docs: documentation only changes
chore: other changes that don't modify src or test files
test: adding missing tests or correcting existing tests
ci: changes to our CI configuration files and scripts
refactor: a code change that neither fixes a bug nor adds a feature such as renaming a variable

Examples:

docs: update README
chore: update dependencies
test: add tests for new feature
ci: only build on main branch
refactor: remove unused imports

Making changes

# make your changes
pnpm run build