└── url-shortener/
├── README.md
├── components.json
├── index.html
├── jsconfig.json
├── package-lock.json
├── package.json
├── postcss.config.js
├── public
│ ├── a-man-celebrating-in-front-of-his-laptop-after-he--4d6ZDLiwQXOoZMFB4c6wrg-VXDhoEI-QjWFcfUQG8eG0g.jpeg
│ ├── banner.jpeg
│ ├── banner1.jpg
│ ├── banner2.jpg
│ ├── logo.jpeg
│ ├── logo.png
│ ├── qr.png
│ └── vite.svg
├── src
│ ├── App.css
│ ├── App.jsx
│ ├── components
│ ├── context.jsx
│ ├── db
│ ├── hooks
│ ├── index.css
│ ├── layouts
│ ├── lib
│ ├── main.jsx
│ └── pages
├── tailwind.config.js
├── vite.config.js
└── yarn.lockBefore getting started with url-shortener, ensure your runtime environment meets the following requirements:
- Programming Language: JavaScript
- Package Manager: Yarn, Npm
Install url-shortener using one of the following methods:
Build from source:
- Clone the url-shortener repository:
❯ git clone https://github.com/devloperds/url-shortener- Navigate to the project directory:
❯ cd url-shortener- Install the project dependencies:
❯ yarn install❯ npm installRun url-shortener using the following command:
Using yarn
❯ yarn run dev❯ npm run devRun the test suite using the following command:
Using yarn
❯ yarn test❯ npm test- 💬 Join the Discussions: Share your insights, provide feedback, or ask questions.
- 🐛 Report Issues: Submit bugs found or log feature requests for the
url-shortenerproject. - 💡 Submit Pull Requests: Review open PRs, and submit your own PRs.
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your github account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone https://github.com/devloperds/url-shortener
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.' - Push to github: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!
This project is protected under the SELECT-A-LICENSE License. For more details, refer to the LICENSE file.
- List any resources, contributors, inspiration, etc. here.