-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstepsToSylabiSync.txt
More file actions
57 lines (46 loc) · 1.95 KB
/
stepsToSylabiSync.txt
File metadata and controls
57 lines (46 loc) · 1.95 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
📌 Step 1: Create a Project Folder & Basic Setup
🛠️ Tools to Install (Everyone)
- VS Code (or any code editor)
- XAMPP (For running PHP and MySQL locally)
- Git & GitHub (For version control)
Folder Structure basic
project-folder/
│── index.php # Homepage
│── dashboard.php # Main user dashboard
│── login.php # User authentication
│── register.php # Signup page
│── config.php # Database connection
│── assets/ # CSS, TailwindCSS, images
│── uploads/ # PDF/doc storage
│── db/ # database files
│── stepsToSyllabiSync.txt #info to create project
└── SyllabiSync.txt #about project
Step 3: Set Up TailwindCSS & PHP
1️⃣ Initialize TailwindCSS (Frontend Team)
Add this to your <head> in index.php:
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
2️⃣ Set Up PHP & Database Connection (Backend Team)
Create a new file config.php inside the project folder:
<?php
$host = "localhost";
$user = "root";
$pass = "";
$dbname = "aicte_portal";
$conn = new mysqli($host, $user, $pass, $dbname);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
?>
Step 4: Create a GitHub Repo & Push the Code
1️⃣ One team member creates a GitHub repository.
2️⃣ Everyone clones the repo using:
git clone <repo_link>
3️⃣ Use Git for version control (git pull, git commit -m "message", git push).
📌 Step 5: First Task – Implement Login System
Start small! Build a simple login/register system using PHP & MySQL.
🔹 Day 1: Setup HTML & TailwindCSS UI for login page.
🔹 Day 2: Implement user authentication (PHP, MySQL).
GOAL 1: Login page
GOAL 2: Registration Page
GOAL 3: Implementing Session Management & User Authentication
GOAL 4: Building the Dashboard & Navigation