The project was created for personal use, but I'm sharing it in the hope that someone else will find it useful.
Follow these instructions to get a copy of the project up and running on your local machine for development and testing purposes.
Ensure you have the following installed on your system:
- Python 3.8+
- Node.js & npm
-
Clone the repository to your local machine:
git clone https://github.com/failutee/Chunky.git cd Chunky
-
Install the necessary dependencies for both the backend and frontend:
# Install Python packages for the backend pip install -r backend/requirements.txt # Install Node.js packages for the frontend npm install --prefix frontend
We provide two ways to run the application.
We've included a convenient script to launch both the backend and frontend services simultaneously.
python scripts/loader.py
If you prefer to manage the services individually or encounter issues with the loader script, you can run them in separate terminal sessions.
-
Start the Backend Server:
python backend/server.py
-
Start the Frontend Development Server:
npm start --prefix frontend
After starting the application, it should be available at http://localhost:3000
.