-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLICENSE-CC.txtLICENSE-CC.txt
38 lines (26 loc) · 1.19 KB
/
LICENSE-CC.txtLICENSE-CC.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
# Navigate to the project folder
cd MetaConnect || { echo "Directory MetaConnect does not exist."; exit 1; }
# Initialize a new Git repository
git init
# Create a .gitignore file
echo ".env" > .gitignore
# Create a LICENSE file with Creative Commons Attribution 4.0 International License
cat <<EOL > LICENSE
Creative Commons Attribution 4.0 International License
You are free to:
- Share — copy and redistribute the material in any medium or format
- Adapt — remix, transform, and build upon the material
The licensor cannot revoke these freedoms as long as you follow the license terms.
Under the following terms:
- Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
Copyright (c) 2025 MetaConnect
EOL
# Add all files to the staging area
git add .
# Commit the files with an initial commit message
git commit -m "Initial commit with JWT setup and LICENSE"
# Add the remote repository
git remote add origin https://github.com/Ze0ro99/MetaConnect.git
# Push the changes to the main branch
git push -u origin main