Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pmcode9992/emailai_web
Email AI revolutionizes email writing by seamlessly integrating the power of ChatGPT's API. This React TypeScript application, backed by Python Flask, leverages Bootstrap and Vite for a sleek user interface, empowering users to effortlessly compose emails with intelligent assistance.
https://github.com/pmcode9992/emailai_web
bootstrap chatgpt-api flask python reactts vite
Last synced: about 1 month ago
JSON representation
Email AI revolutionizes email writing by seamlessly integrating the power of ChatGPT's API. This React TypeScript application, backed by Python Flask, leverages Bootstrap and Vite for a sleek user interface, empowering users to effortlessly compose emails with intelligent assistance.
- Host: GitHub
- URL: https://github.com/pmcode9992/emailai_web
- Owner: pmcode9992
- Created: 2023-07-20T09:57:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-16T07:47:42.000Z (about 1 year ago)
- Last Synced: 2023-12-16T08:40:00.885Z (about 1 year ago)
- Topics: bootstrap, chatgpt-api, flask, python, reactts, vite
- Language: TypeScript
- Homepage: https://emailai-web.netlify.app/
- Size: 348 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EmailAI_web
https://github.com/pmcode9992/EmailAI_web/assets/93529653/c47fa298-c6be-4bb6-a55b-16c42f6e12f2
https://github.com/pmcode9992/EmailAI_web/assets/93529653/08d5406d-fc84-4667-82af-3ff60d9dcf32
How to Locally Host a Website
Follow these steps to locally host a website using npm and Node.js:Clone Repository:
Clone your Git repository that contains the website source code to your local machine. You can use the following command:```terminal
git clone https://github.com/pmcode9992/EmailAI_web.git
```
Navigate to Project Directory:
Change your working directory to the project folder using the cd command:```terminal
cd
```
Install Dependencies:
Install the required dependencies for your website using npm. Make sure you have Node.js and npm installed. Run the following command to install the dependencies specified in the package.json file:```terminal
npm install
```
Run Development Server:
To start a local development server and preview your website, use the following npm command:```terminal
npm run dev
```
This command will typically start a development server and show you an address where your website is being hosted locally (e.g., http://localhost:3000).Open in Browser:
Open your preferred web browser and navigate to the local address provided by the development server. For example, if the server is running on http://localhost:3000, enter this URL in your browser's address bar and hit Enter.View Your Locally Hosted Website:
Your website should now be accessible in your browser through the local server. You can interact with and test your website just as if it were hosted online.