Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
db4dbc7
Backend Auth Done
SerkanToraman Jul 10, 2023
3917010
Login-Register FrontPage done-Auth backend test done
SerkanToraman Jul 11, 2023
42b5c05
Auth cypress frontend tests added async issues exists
SerkanToraman Jul 11, 2023
bd5a687
backend tweets array added - getTweetsByUser
SerkanToraman Jul 11, 2023
2ae42e8
user model for users,tweets and tweetreplies done
SerkanToraman Jul 12, 2023
941950f
update on usermodel tweets
SerkanToraman Jul 12, 2023
5feccd9
FrontEnd : UseAxios andpoint and Main page draft layout done
SerkanToraman Jul 13, 2023
e03c080
frontend Tweets Display draft done
SerkanToraman Jul 14, 2023
d9632a5
add tweet front end and backend done
SerkanToraman Jul 15, 2023
96fba3d
selfjoin trial on tweets
SerkanToraman Jul 15, 2023
2aeaa98
Backend-Frontend main tweet page with message count done
SerkanToraman Jul 16, 2023
69eabb3
parent and child tweets added on frontend and backend
SerkanToraman Jul 16, 2023
d16cb7d
Front end send tweet container completed
SerkanToraman Jul 17, 2023
26c54f3
Frontend-backend Userstweetpage done
SerkanToraman Jul 17, 2023
56093eb
backend and frontend likes done
SerkanToraman Jul 18, 2023
8fd1ceb
New Tweet Like Bug solved
SerkanToraman Jul 18, 2023
3a025b0
frontend-backend message delete
SerkanToraman Jul 19, 2023
f658d8d
deleteTweet middlewares done
SerkanToraman Jul 19, 2023
f4eeb11
adding a code for deployment error --
SerkanToraman Jul 19, 2023
8bed24f
sendnewTweet page refresh added, logourt for user added
SerkanToraman Jul 19, 2023
1db949c
knex and .env improvements
SerkanToraman Jul 19, 2023
3c8b3b6
baseurl added to frontend
SerkanToraman Jul 19, 2023
9701662
AuthCOntext URL link update
SerkanToraman Jul 19, 2023
ef23f22
corsUpdate
SerkanToraman Jul 19, 2023
41a6a3b
cors origin update
SerkanToraman Jul 19, 2023
4eed74c
usertweets delete bug solved
SerkanToraman Jul 20, 2023
c66a6cc
restrict mw added
SerkanToraman Jul 20, 2023
0c8aadf
Authorisation token updated
SerkanToraman Jul 20, 2023
2d4a768
frontend token get solved
SerkanToraman Jul 20, 2023
778ba48
token error on vercel
SerkanToraman Jul 20, 2023
dca3c00
parsetoken in useAxions
SerkanToraman Jul 20, 2023
eaa3d99
Redis added
SerkanToraman Jul 20, 2023
98ab10a
URLs updated to go live
SerkanToraman Jul 20, 2023
1952f5c
url update
SerkanToraman Jul 20, 2023
c179eba
rerdis disabled
SerkanToraman Jul 20, 2023
0a452c3
frontend URL Updated
SerkanToraman Jul 20, 2023
681c1f3
URL updates
SerkanToraman Jul 20, 2023
4463003
URL error issues trial
SerkanToraman Jul 20, 2023
f20d154
Cors updates
SerkanToraman Jul 20, 2023
6faed8d
registerURL updated
SerkanToraman Jul 21, 2023
dc3750c
cors update
SerkanToraman Jul 21, 2023
e645744
Frontend infinite rerendering solved
SerkanToraman Jul 21, 2023
03fffec
axiosAuth URL updated
SerkanToraman Jul 21, 2023
fbda5a4
logger and console.logs taggged out
SerkanToraman Jul 21, 2023
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
130 changes: 130 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp
.cache

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [

{
"type": "node",
"request": "launch",
"name": "nodemon",
"runtimeExecutable": "nodemon",
"program": "${workspaceFolder}/index.js",
"restart": true,
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"env": {
"debug": "app:*",
}
}
]
}
Loading