PixelDrag is an image gallery web application that allows users to manage the gallery through an intuitive drag and drop interface. Users can rearrange the images in the gallery to their liking. Additionally, PixelDrag provides user account functionality, with the ability to log in or create an account.
PixelDrag is built using the following technologies and libraries:
- React - A popular JavaScript library for building user interfaces.
- React Router - For handling client-side routing in the application.
- DND Kit - A set of utilities for building drag and drop interfaces.
- Firebase - Used for authentication and user management.
- React Toastify - For displaying user-friendly notifications.
To get started with PixelDrag, follow these steps:
-
Clone the repository:
git clone <repository-url>
-
Navigate to the project directory:
cd pixiedrag-hng-stage-3
-
Install project dependencies using npm:
npm install
-
Firebase Configuration:
-
Create a Firebase project on the Firebase Console.
-
In your Firebase project settings, locate and copy your Firebase configuration object. It should look something like this:
const firebaseConfig = { apiKey: "your-api-key", authDomain: "your-auth-domain", projectId: "your-project-id", storageBucket: "your-storage-bucket", messagingSenderId: "your-messaging-sender-id", appId: "your-app-id" };
-
In the project directory, find the
firebaseConfig.ts
file located in thesrc/config
folder. -
Open
firebaseConfig.ts
and replace the existingfirebaseConfig
variable with your Firebase configuration from step 2. -
Save the file.
-
-
Start the development server:
npm run dev
-
Open your web browser and go to
http://localhost:5173
to access PixelDrag.
Now, your local development environment is configured to use Firebase for authentication. PixelDrag will use this configuration to interact with Firebase services when running locally.
Remember to keep your Firebase configuration secure and avoid sharing sensitive information such as API keys publicly.
PixelDrag requires user authentication for using the drag and drop functionality. Here are the authentication options:
-
Logging In: Existing users can log in using their email and password. A testing account is also available with the following credentials:
- Email:
user@example.com
- Password:
1Password
- Email:
-
Creating an Account: Users who do not have an account can create one using their email and a password.
When creating a password for your PixelDrag account, please note that only the following special characters are allowed: @$!%*?&
. If any other special characters are used in the password, you will not be able to create an account.
⭐️ Built by Dave for HNG X Zuri Stage 3 task.