Skip to content

Commit

Permalink
Merge pull request #1 from rabbitholegg/v1.0.1
Browse files Browse the repository at this point in the history
update github urls
  • Loading branch information
veganbeef authored Feb 6, 2024
2 parents 1289625 + e5eed55 commit d156978
Show file tree
Hide file tree
Showing 4 changed files with 127 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bin/create-project.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const { generateApplet } = require('./generate-applet');

function createProject(projectName, firstAppletName) {
const projectPath = path.resolve(projectName);
const gitRepoUrl = 'https://github.com/fframes/create-fframe-app.git';
const gitRepoUrl = 'https://github.com/rabbitholegg/create-fframe-app.git';

// clone the repository
console.log(`cloning the template into ${projectPath}`);
Expand Down
120 changes: 120 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "create-fframe-app",
"version": "1.0.0",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/fframes/create-fframe-app.git"
"url": "git+https://github.com/rabbitholegg/create-fframe-app.git"
},
"license": "MIT",
"author": {
"name": "veganbeef",
"email": "veganbeef@protonmail.com",
"url": "https://github.com/veganbeef"
"name": "boost.xyz",
"email": "info@boost.xyz",
"url": "https://github.com/rabbitholegg"
},
"keywords": ["farcaster", "frames", "nodejs", "node", "nextjs", "next", "typescript", "npx"],
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/app/api/example/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export async function POST(request: NextRequest): Promise<NextResponse> {
}));
} else {
// handle post_redirect click
const headers = new Headers({ 'Location': 'https://github.com/fframes/create-fframe-app' });
const headers = new Headers({ 'Location': 'https://github.com/rabbitholegg/create-fframe-app' });
return new NextResponse(null, { status: 302, statusText: 'OK', headers });
}
} else if (frameId === FRAME_ID.success) {
Expand Down

0 comments on commit d156978

Please sign in to comment.