RobertoBarrosoLuque commited on
Commit
f9c74bd
Β·
1 Parent(s): b26a839

Add README and makefile

Browse files
Files changed (2) hide show
  1. Makefile +25 -0
  2. README.md +3 -3
Makefile ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .PHONY: setup install clean run
2
+
3
+ setup:
4
+ @echo "Setting up local environment..."
5
+ @scripts/install_uv.sh
6
+ @uv python install 3.11
7
+ @scripts/create_venv.sh
8
+ @. .venv/bin/activate && make install
9
+
10
+ install:
11
+ @echo "Installing dependencies..."
12
+ uv pip install -e .
13
+
14
+ clean:
15
+ @echo "Cleaning up..."
16
+ rm -rf .venv
17
+ rm -rf dist
18
+ rm -rf *.egg-info
19
+ find . -type d -name __pycache__ -exec rm -rf {} +
20
+ find . -type d -name .pytest_cache -exec rm -rf {} +
21
+ find . -type d -name .ipynb_checkpoints -exec rm -rf {} +
22
+
23
+ run:
24
+ @. .venv/bin/activate
25
+ python -m src.app
README.md CHANGED
@@ -1,11 +1,11 @@
1
  ---
2
  title: Search Alchemy
3
  emoji: πŸŒ–
4
- colorFrom: indigo
5
- colorTo: red
6
  sdk: gradio
7
  sdk_version: 5.49.1
8
- app_file: app.py
9
  pinned: false
10
  license: mit
11
  short_description: A working cookbook that demonstrates building production sea
 
1
  ---
2
  title: Search Alchemy
3
  emoji: πŸŒ–
4
+ colorFrom: blue
5
+ colorTo: purple
6
  sdk: gradio
7
  sdk_version: 5.49.1
8
+ app_file: src/app.py
9
  pinned: false
10
  license: mit
11
  short_description: A working cookbook that demonstrates building production sea