Skip to content

Commit bba0b33

Browse files
authored
Create deployFeatures.sh
1 parent aa6edb0 commit bba0b33

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

deployFeatures.sh

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Navigate to your repository
2+
cd path/to/RA-Space-exploration
3+
4+
# Create and edit index.html
5+
echo '<!DOCTYPE html>...' > index.html
6+
7+
# Create and edit styles.css
8+
echo 'body { ... }' > styles.css
9+
10+
# Create and edit scripts.js
11+
echo 'let stressLevel = 30; ...' > scripts.js
12+
13+
# Add the files to the repository
14+
git add index.html styles.css scripts.js
15+
16+
# Commit the changes
17+
git commit -m "Isolated HTML, CSS, and JavaScript into separate files"
18+
19+
# Push to GitHub
20+
git push origin main

0 commit comments

Comments
 (0)