Update README.md

This commit is contained in:
Amit Kumar Nandi 2024-02-14 17:40:09 +05:30 committed by GitHub
parent 9174948645
commit a20c6f24b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

173
README.md
View file

@ -1,28 +1,21 @@
# Enterprise-Grade URL Shortener and Bio Page Application ## Enterprise-Grade URL Shortener and Bio Page Application
[![Build Status](https://travis-ci.org/yourusername/your-repo.svg?branch=main)](https://travis-ci.org/yourusername/your-repo) [![Build Status](https://travis-ci.org/yourusername/your-repo.svg?branch=main)](https://travis-ci.org/yourusername/your-repo)[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE.md)[![GitHub last commit](https://img.shields.io/github/last-commit/yourusername/your-repo.svg)](https://github.com/yourusername/your-repo/commits/main)[![GitHub issues](https://img.shields.io/github/issues/yourusername/your-repo.svg)](https://github.com/yourusername/your-repo/issues)[![GitHub pull requests](https://img.shields.io/github/issues-pr/yourusername/your-repo.svg)](https://github.com/yourusername/your-repo/pulls)[![GitHub contributors](https://img.shields.io/github/contributors/yourusername/your-repo.svg)](https://github.com/yourusername/your-repo/graphs/contributors)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE.md)
[![GitHub last commit](https://img.shields.io/github/last-commit/yourusername/your-repo.svg)](https://github.com/yourusername/your-repo/commits/main)
[![GitHub issues](https://img.shields.io/github/issues/yourusername/your-repo.svg)](https://github.com/yourusername/your-repo/issues)
[![GitHub pull requests](https://img.shields.io/github/issues-pr/yourusername/your-repo.svg)](https://github.com/yourusername/your-repo/pulls)
[![GitHub contributors](https://img.shields.io/github/contributors/yourusername/your-repo.svg)](https://github.com/yourusername/your-repo/graphs/contributors)
[![Twitter](https://img.shields.io/twitter/url/https/github.com/yourusername/your-repo.svg?style=social)](https://twitter.com/intent/tweet?url=https%3A%2F%2Fgithub.com%2Fyourusername%2Fyour-repo&text=Check%20out%20this%20awesome%20URL%20Shortener%20and%20Bio%20Page%20Application&via=yourtwitterhandle) [![Twitter](https://img.shields.io/twitter/url/https/github.com/yourusername/your-repo.svg?style=social)](https://twitter.com/intent/tweet?url=https%3A%2F%2Fgithub.com%2Fyourusername%2Fyour-repo&text=Check%20out%20this%20awesome%20URL%20Shortener%20and%20Bio%20Page%20Application&via=yourtwitterhandle)
A powerful and scalable URL shortener with integrated bio pages built using Spring Boot. A powerful and scalable URL shortener with integrated bio pages built using Spring Boot.
## Table of Contents ## Table of Contents
- [Overview](#overview) * [Overview](#overview)
- [Features](#features) * [Features](#features)
- [Getting Started](#getting-started) * [Getting Started](#getting-started)
- [Prerequisites](#prerequisites) * [Prerequisites](#prerequisites)
- [Local Setup](#local-setup) * [Local Setup](#local-setup)
- [Deployment](#deployment) * [Deployment](#deployment)
- [Usage](#usage) * [Usage](#usage)
- [Contributing](#contributing) * [Contributing](#contributing)
- [License](#license) * [License](#license)
## Overview ## Overview
@ -30,14 +23,14 @@ This project is an enterprise-grade URL shortener and bio page application devel
## Features ## Features
- Shorten URLs and create custom short URLs * Shorten URLs and create custom short URLs
- Integrated bio pages for users * Integrated bio pages for users
- Analytics tracking for each shortened URL * Analytics tracking for each shortened URL
- User management with registration, login, and profile updates * User management with registration, login, and profile updates
- Subscription plans for premium features * Subscription plans for premium features
- Rate limiting to prevent abuse * Rate limiting to prevent abuse
- Forgot password and username recovery functionality * Forgot password and username recovery functionality
- ... * ...
## Getting Started ## Getting Started
@ -45,64 +38,102 @@ This project is an enterprise-grade URL shortener and bio page application devel
Before you begin, ensure you have the following installed: Before you begin, ensure you have the following installed:
- Java (JDK 11 or later) * Java (JDK 11 or later)
- Maven * Maven
- MySQL * MySQL
- Your favorite IDE (IntelliJ, Eclipse, etc.) * Your favorite IDE (IntelliJ, Eclipse, etc.)
### Local Setup ### Local Setup
1. Clone the repository: 1. Clone the repository:
```plaintext
git clone https://github.com/yourusername/your-repo.git
```
2. **Apply the Database Schema:**
Execute the provided **db\_schema.sql** file to set up the necessary tables and schema for the application. This script will also create the required database.
3. ```plaintext
mysql -u your_username -p < path/to/db_schema.sql
```
4. Update the application.properties file:
```bash > Update the application.properties file in the src/main/resources directory with your database configuration.
git clone https://github.com/yourusername/your-repo.git
2. Create a MySQL database:
```sql 1. Build and run the application:
CREATE DATABASE url_shortener_db;
```plaintext
2. Update the application.properties file: Ccd your-repo
mvn spring-boot:run
>Update the application.properties file in the src/main/resources directory with your database configuration. ```
2. Access the application at http://localhost:8080
4. Build and run the application:
```bash
Ccd your-repo
mvn spring-boot:run
5. Access the application at http://localhost:8080
### Deployment ### Deployment
1. Build a deployable JAR: 1. **Build a deployable WAR:**
```bash ```plaintext
mvn clean install mvn clean install
```
2. Deploy the JAR:
2. **Deploy the WAR:**
>Deploy the generated JAR file to your cloud provider of choice (AWS, GCP, Azure, etc.). * **Option 1: Manual Deployment**
3.Configure environment variables: Deploy the generated WAR file to your Tomcat server. Copy the WAR file to the `webapps` directory of your Tomcat installation.
>Set environment variables for cloud-specific settings. ```plaintext
cp target/shorten.war /path/to/tomcat/webapps/
```
4. Start the application on the cloud server:
* **Option 2: Web Interface Upload**
```bash
java -jar your-repo.jar Alternatively, if your Tomcat server provides a web interface for WAR file deployment, follow these steps:
* Access the Tomcat Manager web interface at `http://localhost:8080/manager/html` (replace with your Tomcat server address).
* Log in with your Tomcat manager credentials.
* Navigate to the "WAR file to deploy" section.
* Choose the `shorten.war` file using the file upload button.
* Click the "Deploy" button.
3. **Configure environment variables:**
Set environment variables for cloud-specific settings.
4. **Adjust Tomcat Configuration (Important):**
To ensure proper functionality, it's important to run the application on the root of the servlet container. If you're using Tomcat, add the following line to your `server.xml` configuration file within the `<Host>` section:
```xml
<Context path="" docBase="shorten" reloadable="true"></Context>
```
This ensures that the application runs on the root context path. Adjust the `docBase` attribute according to your deployment directory.
5. **Start Tomcat:**
Start your Tomcat server.
```plaintext
/path/to/tomcat/bin/startup.sh # for Linux
/path/to/tomcat/bin/startup.bat # for Windows
```
Access the application at `http://localhost:8080/`.
### Usage ### Usage
1. Shorten URLs by visiting the URL Shortener page.
2. Access analytics for each shortened URL. 1. Shorten URLs by visiting the URL Shortener page.
3. Create and manage bio pages in the Bio section. 2. Access analytics for each shortened URL.
3. Create and manage bio pages in the Bio section.
### Contributing ### Contributing
Contributions are welcome! Please follow the contribution guidelines. Contributions are welcome! Please follow the contribution guidelines.
### License ### License
This project is licensed under the MIT License - see the LICENSE.md file for details. This project is licensed under the MIT License - see the LICENSE.md file for details.