This is a project that implements a clone of Linktree, a platform used to aggregate links and redirect users to other pages.
To use this project on your local machine, follow the instructions below:
- Clone this repository to your computer using the command
git clone https://github.com/gitDbits/link_tree_clone.git. - Navigate to the project folder with the command
cd link_tree_clone. - Install project dependencies with the command
bundle install. - Create the database with the command
rails db:create. - Run the migrations with the command
rails db:migrate. - Start the server with the command
rails server.
After these steps, the project will be available at http://localhost:3000.
Link Tree Clone implements the following features:
- Adding links
- Editing links
- Deleting links
- Redirecting to other pages
Contributions are always welcome! If you want to collaborate on the development of this project, follow the steps below:
- Fork this repository to your GitHub account.
- Clone your forked repository to your computer with the command
git clone https://github.com/your-username/link_tree_clone.git. - Navigate to the project folder with the command
cd link_tree_clone. - Create a branch for your modifications with the command
git checkout -b your-branch-name. - Make your modifications and test the project locally.
- Add your modifications to the stage with the command
git add .. - Commit your modifications with the command
git commit -m "Commit message". - Push your modifications to GitHub with the command
git push origin your-branch-name. - Open a Pull Request on the original repository with your modifications.