This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
952373d
commit eadfc7b
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
githubRepoOwner: starkware-libs | ||
githubRepoName: blockifier | ||
githubHost: github.com | ||
githubRemote: origin | ||
githubBranch: main-v0.13.2 | ||
requireChecks: true | ||
requireApproval: true | ||
mergeMethod: squash | ||
mergeQueue: false | ||
forceFetchTags: false | ||
showPrTitlesInStack: false | ||
branchPushIndividually: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
const express = require('express'); | ||
const app = express(); | ||
const port = 3000; | ||
|
||
// Fake data for the activity feed | ||
const activityFeed = [ | ||
{ | ||
id: 1000, | ||
title: 'New Photo Uploaded', | ||
body: 'Alice uploaded a new photo to her album.' | ||
}, | ||
{ | ||
id: 2000, | ||
title: 'Comment on Post', | ||
body: "Bob commented on Charlie's post." | ||
}, | ||
{ | ||
id: 13, | ||
title: 'Status Update', | ||
body: 'Charlie updated their status: "Excited about the new project!"' | ||
} | ||
]; | ||
|
||
app.get('/feed', (req, res) => { | ||
res.json(activityFeed); | ||
}); | ||
|
||
app.listen(port, () => { | ||
console.log(`Server running on port ${port}`); | ||
}); |