Auto generate text based on the given prompt using AI technology!
- TypeScript
- React
- TailwindCSS
- parcel
- prettier
- OpenAI GPT-3
Follow the following instructions to run the application locally.
-
Get an API key from openai.com
- Open AI offers $18 in free credits for new sign ups (no credit card required). - Please note free credits expire after 3 months.
-
Then go to where you would like to store the application.
- In a terminal run:
git clone https://github.com/orelbn/easyWriting
cd easyWriting
Make sure you have an updated version of npm and node installed.
-
Run:
npm i
-
Create a .env file in your root directory
- On linux (I believe this works for mac OS as well):
touch .env
- On windows:
nul > .env
-
Go over to your favourite code editor and update the .env file with your API key.
REACT_APP_API_KEY = "your API key"
-
Deploy the application locally by running:
npm run dev
-
Press on the local host link.
- ex. Server running at https://localhost:1234
-
Enjoy!
-
If you get an error message stating that parcel is not identified:
npm i -D parcel
-
Future troublshooting updates will be added below, feel free to submit an issue.