This file contains hidden or 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
| // app.js | |
| const express = require('express'); | |
| const http = require('http'); | |
| const socketIO = require('socket.io'); | |
| const mongoose = require('mongoose'); | |
| const messageSchema = new mongoose.Schema({ | |
| user: String, | |
| text: String, | |
| timestamp: { type: Date, default: Date.now }, |
This file contains hidden or 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
| #!/bin/bash | |
| # ------------------------------------------------------------------------------------ # | |
| # AWS CodeCommit to GitHub Migration Script | |
| # Author: bhaireshm | |
| # Date: 2024-10-28 | |
| # Version: 1.0.0 | |
| # Description: | |
| # This script facilitates the seamless migration of repositories from AWS CodeCommit to GitHub. |
OlderNewer