Before you begin, ensure you have Yarn installed. Make sure you have NPM installed before runnning this command:
npm install -g corepackTo install the necessary dependencies, run:
yarnOnce the dependencies are installed, you can start the development server by running:
yarn devThe app will now be running locally, and you can view it in your browser at localhost:3000.
Before you begin, ensure you have uv installed. We will be using uv as our package manager for the backend. uv can be installed by running:
brew install uvBefore beginning with the installation, make sure you are in the backend directory by running:
cd backendAfter installing uv, create a virtual environment using the following command:
uv venv --prompt hoagie-hacks --python 3.12.12 .venvThis creates a virtual environment named hoagie-hacks contained within the .venv directory. Activate the virtual environment with:
source .venv/bin/activateTo install the relevant backend depedencies, run:
uv syncThis will install all required backend dependencies in the virtual environment.
uv run manage.py runserverThis project is licensed under the MIT License. See the LICENSE file for details.