Add Git attributes for generated Next types #3
@@ -10,6 +10,12 @@ Repository:
|
|||||||
MrSphay/WatchLink
|
MrSphay/WatchLink
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Current organization remote:
|
||||||
|
|
||||||
|
```text
|
||||||
|
Code-Inc/WatchLink
|
||||||
|
```
|
||||||
|
|
||||||
## Commands
|
## Commands
|
||||||
|
|
||||||
```text
|
```text
|
||||||
@@ -49,6 +55,25 @@ Package manager:
|
|||||||
npm
|
npm
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Pull Requests
|
||||||
|
|
||||||
|
This project uses the Gitea organization repository directly rather than a
|
||||||
|
personal fork workflow. If API-based PR creation is unavailable or
|
||||||
|
`GITEA_TOKEN` is not a valid API token, create PRs over SSH with Gitea AGit:
|
||||||
|
|
||||||
|
```text
|
||||||
|
git push -o topic=<branch-name> origin HEAD:refs/for/<base-branch>
|
||||||
|
```
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
```text
|
||||||
|
git push -o topic=codex/project-hygiene-followups origin HEAD:refs/for/feature/room-invites-chat-moderation
|
||||||
|
```
|
||||||
|
|
||||||
|
After creation, validate the PR with the public API or web UI and poll any
|
||||||
|
started Gitea checks until success or a concrete blocker is known.
|
||||||
|
|
||||||
## Build Artifacts
|
## Build Artifacts
|
||||||
|
|
||||||
Next.js standalone build output:
|
Next.js standalone build output:
|
||||||
|
|||||||
4
.gitattributes
vendored
Normal file
4
.gitattributes
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
* text=auto
|
||||||
|
|
||||||
|
# Next.js generates this file with LF line endings.
|
||||||
|
next-env.d.ts text eol=lf
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -4,6 +4,7 @@ dist/
|
|||||||
build/
|
build/
|
||||||
coverage/
|
coverage/
|
||||||
*.log
|
*.log
|
||||||
|
tsconfig.tsbuildinfo
|
||||||
.env
|
.env
|
||||||
.env.*
|
.env.*
|
||||||
!.env.example
|
!.env.example
|
||||||
|
|||||||
@@ -15,6 +15,8 @@ Initial implementation created from `codex-agent-repository-kit` guidance.
|
|||||||
|
|
||||||
- Repository visibility is public.
|
- Repository visibility is public.
|
||||||
- Gitea Actions can run `npm install`, tests, build, and Docker image publishing.
|
- Gitea Actions can run `npm install`, tests, build, and Docker image publishing.
|
||||||
|
- PRs can be created in the organization repo over SSH with Gitea AGit when API
|
||||||
|
credentials are unavailable: `git push -o topic=<branch> origin HEAD:refs/for/<base>`.
|
||||||
- Local Docker is still unavailable in this Codex environment, but Gitea Actions can build the image.
|
- Local Docker is still unavailable in this Codex environment, but Gitea Actions can build the image.
|
||||||
- Docker publish was fixed by updating `REGISTRY_TOKEN`; Gitea issue #1 is closed.
|
- Docker publish was fixed by updating `REGISTRY_TOKEN`; Gitea issue #1 is closed.
|
||||||
- Room-scoped persisted invite codes were added to the room Invite rail. Room owners, admins, and room managers can create expiring invite codes and revoke active room invites.
|
- Room-scoped persisted invite codes were added to the room Invite rail. Room owners, admins, and room managers can create expiring invite codes and revoke active room invites.
|
||||||
|
|||||||
Reference in New Issue
Block a user