Stock management software for footwear shop built using python-eel and Svelte.
Frontend is built using Svelte
-
cd into UI folder and install the required dependancies:
npm install -
Run
npm run devto view the interface during development
Application is built using python-eel
-
cd into app folder and create virtual environment:
python -m venv env -
Activate the environment:
env\Scripts\activate -
Install the dependancies:
pip install -r requirements.txt
To build the UI, run the command: npm run build, inside UI folder.
Once the build is complete, JS and CSS bundles will be generated inside app/web/assets/
To launch the application, run the command: python main.py, inside app folder (virtual environment activated).
-
Use PyInstaller for packaging.
-
Follow this Reference for packaging python-eel application using PyInstaller.
