Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
6f2aaea
Merge pull request #20 from sametekinpolat/main
sametekinpolat Mar 31, 2026
e2cf2f0
#13 page created with ui kit
sametekinpolat Mar 31, 2026
d718443
#13 page created with ui kit
sametekinpolat Mar 31, 2026
4f2630b
Merge branch '13-frontend-login-page' of https://github.com/sametekin…
sametekinpolat Mar 31, 2026
152281f
Merge pull request #21 from sametekinpolat/13-frontend-login-page
sametekinpolat Mar 31, 2026
2f9cba5
#9 er diagrams for database uploaded as svg file
sametekinpolat Mar 31, 2026
3e95cec
#9 #14 add Prisma client and initial database schema with migrations
sametekinpolat Apr 2, 2026
a8cf248
Merge pull request #23 from sametekinpolat/9-design-database-and-er-d…
sametekinpolat Apr 2, 2026
08f7c50
fix: #24 this occured because of installation of prisma client, error…
sametekinpolat Apr 2, 2026
90435df
Merge pull request #25 from sametekinpolat/24-error-on-build
sametekinpolat Apr 2, 2026
a25b80b
#26 implement email verification functionality with rate limiting
sametekinpolat Apr 3, 2026
2f42dd5
#27 add onboarding page for user registration with username and email…
sametekinpolat Apr 3, 2026
801ae90
#12 feat(auth): implement authentication flow with login, registratio…
sametekinpolat Apr 3, 2026
268bdf7
Merge pull request #28 from sametekinpolat/27-user-onboarding-after-r…
sametekinpolat Apr 3, 2026
e9270f8
Merge pull request #29 from sametekinpolat/26-mail-verification-for-u…
sametekinpolat Apr 3, 2026
04e3c6a
Merge pull request #35 from sametekinpolat/12-user-authentication
sametekinpolat Apr 3, 2026
33faf36
#40 fix(ci): update actions versions and use npm ci for dependency in…
sametekinpolat Apr 3, 2026
a2961c3
Merge pull request #41 from sametekinpolat/40-npm-install-error
sametekinpolat Apr 3, 2026
34d1d92
readme cleaned
sametekinpolat Apr 3, 2026
262487c
fix: update dev script for IPv4 DNS resolution and upgrade nodemailer…
sametekinpolat Apr 20, 2026
b9dda07
Merge pull request #43 from sametekinpolat/42-github-oauth-callback-e…
sametekinpolat Apr 20, 2026
62d6260
Merge pull request #44 from sametekinpolat/12-user-authentication
sametekinpolat Apr 20, 2026
61e41b2
#11 Placholder texts changed on index
sametekinpolat Apr 20, 2026
351e692
Merge pull request #45 from sametekinpolat/11-frontend-home-page
sametekinpolat Apr 20, 2026
ecbe9ba
fix #47: update dependencies and improve email verification handling
sametekinpolat Apr 25, 2026
70b51a4
#22 feat: implement post creation, updating, and deletion actions wit…
sametekinpolat Apr 25, 2026
9206d08
Merge pull request #48 from sametekinpolat/22-design-users-posts-card
sametekinpolat Apr 25, 2026
dc0a0d6
Merge branch 'main' into development
sametekinpolat Apr 25, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '20'

- name: Install Dependencies
run: npm install
run: npm ci --legacy-peer-deps

- name: Run Linter
run: npm run lint
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@

20 changes: 20 additions & 0 deletions docs/database/er diagram/AUTH & USER PROFILES.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions docs/database/er diagram/COMMUNITIES & MODERATION.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions docs/database/er diagram/CONTENT & INTERACTIONS.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ const nextConfig: NextConfig = {
/* config options here */
};


export default nextConfig;
Loading