This project is a Essay/Code generator but has 0% AI detection. Tested with ZeroGPT, Quilbot AI detection, etc. DISCLAIMER: The author does not endorse the use of this app for any unethical purposes
Link to hackathon submission: https://devpost.com/software/humanizergpt
- Frontend: Vue.js
- Backend: Go
The project is divided into two main directories:
frontend
: This directory contains all the Vue.js code for the frontend of the application.main
: This directory contains the Go code for the backend of the application.
The backend server is built with Go and it serves static files from the frontend/dist
directory. It uses the godotenv
package to load environment variables from a .env
file.
- First, you need to build the frontend. Navigate to the
frontend
directory and runyarn install
to install the dependencies. Then, runyarn build
to build the frontend. - Next, navigate to the
main
directory. If you haven't done so already, rungo get
to download the Go dependencies. - Run
go run main/server.go
to start the backend server. The server will serve the static files built in step 1.
Please make sure to update the .env
file with your specific settings before running the application.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.