Skip to content

Commit 33d4962

Browse files
committed
rename
1 parent c3219ef commit 33d4962

File tree

10 files changed

+19
-19
lines changed

10 files changed

+19
-19
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ jobs:
2121
run: |
2222
echo "$PRIVATE_KEY" > private_key && chmod 600 private_key
2323
ssh -o StrictHostKeyChecking=no -i private_key ${USER_NAME}@${HOSTNAME} '
24-
sh /home/imran_baali19/thinkai_main/redeploy.sh
24+
sh /home/imran_baali19/hackai_main/redeploy.sh
2525
'

LICENSE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Version 2.0, January 2004
33
http://www.apache.org/licenses/
44

5-
Copyright (c) 2025 ThinkAI Platform
5+
Copyright (c) 2025 HackAI Platform
66

77
LICENSED UNDER THE APACHE LICENSE, VERSION 2.0 (THE "LICENSE");
88
YOU MAY NOT USE THIS FILE EXCEPT IN COMPLIANCE WITH THE LICENSE.
@@ -20,10 +20,10 @@ LIMITATIONS UNDER THE LICENSE.
2020

2121
ATTRIBUTION REQUIREMENT:
2222

23-
When using or adapting ThinkAI Platform for hackathons, events, or other
23+
When using or adapting HackAI Platform for hackathons, events, or other
2424
public uses, attribution must be provided in a visible manner, such as:
2525

26-
"Powered by ThinkAI Platform - https://github.com/1337-Artificial-Intelligence/thinkai_main"
26+
"Powered by HackAI Platform - https://github.com/1337-Artificial-Intelligence/hackai_main"
2727

2828
This attribution must be visible in the user interface, documentation, and any
2929
promotional materials for the event or hackathon.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# ThinkAI Platform
1+
# HackAI Platform
22

3-
ThinkAI is an AI learning and challenge platform designed to help students and teams collaborate on AI projects and challenges.
3+
HackAI is an AI learning and challenge platform designed to help students and teams collaborate on AI projects and challenges.
44

55
## Features
66

@@ -95,10 +95,10 @@ This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENS
9595

9696
### Attribution Requirement
9797

98-
When using ThinkAI Platform for hackathons, events, or other public uses, attribution must be provided:
98+
When using HackAI Platform for hackathons, events, or other public uses, attribution must be provided:
9999

100100
```
101-
Powered by ThinkAI Platform - https://github.com/1337-Artificial-Intelligence/thinkai_main
101+
Powered by HackAI Platform - https://github.com/1337-Artificial-Intelligence/hackai_main
102102
```
103103

104104
This attribution must be visible in the user interface, documentation, and any promotional materials for the event or hackathon.

backend/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PORT=5000
2-
MONGODB_URI=mongodb://localhost:27017/thinkai
2+
MONGODB_URI=mongodb://localhost:27017/hackai
33
JWT_SECRET=your_jwt_secret_key_here
44
JWT_EXPIRES_IN=24h
55
NODE_ENV=development

backend/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "thinkai-backend",
2+
"name": "hackai-backend",
33
"version": "1.0.0",
44
"main": "src/app.js",
55
"scripts": {

backend/src/scripts/seed-challenges.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const { challengeData, challengeIds } = require('../data/challenges');
77
const seedChallenges = async () => {
88
try {
99
// Connect to MongoDB with fallback URI
10-
const mongoUri = process.env.MONGODB_URI || 'mongodb://localhost:27017/thinkai';
10+
const mongoUri = process.env.MONGODB_URI || 'mongodb://localhost:27017/hackai';
1111
console.log('Connecting to MongoDB URI:', mongoUri);
1212
await mongoose.connect(mongoUri);
1313
console.log('Connected to MongoDB');

redeploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
/home/imran_baali19/thinkai_main/redeployFrontend.sh
2-
/home/imran_baali19/thinkai_main/redeployBackend.sh
1+
/home/imran_baali19/hackai_main/redeployFrontend.sh
2+
/home/imran_baali19/hackai_main/redeployBackend.sh

redeployBackend.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cd /home/imran_baali19/thinkai_main
1+
cd /home/imran_baali19/hackai_main
22
git add . && git commit -m "redeploy"
33
git pull
44

@@ -7,7 +7,7 @@ set -e
77
export NVM_DIR="$HOME/.nvm"
88
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
99

10-
cd /home/imran_baali19/thinkai_main/backend
10+
cd /home/imran_baali19/hackai_main/backend
1111
# npm i && npm run build
1212
npm i
1313
pm2 reload hackai_backend

redeployFrontend.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cd /home/imran_baali19/thinkai_main
1+
cd /home/imran_baali19/hackai_main
22
git add . && git commit -m "redeploy"
33
git pull
44

@@ -7,7 +7,7 @@ set -e
77
export NVM_DIR="$HOME/.nvm"
88
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
99

10-
cd /home/imran_baali19/thinkai_main/frontend
10+
cd /home/imran_baali19/hackai_main/frontend
1111
npm i && npm run build
1212
sudo rm -rf /usr/share/caddy/hackai-frontend
1313
sudo mv dist /usr/share/caddy/hackai-frontend

0 commit comments

Comments
 (0)