Skip to content

Commit debc4ea

Browse files
committed
refactor: add old pip modules
1 parent 42f84bb commit debc4ea

File tree

9 files changed

+7223
-4204
lines changed

9 files changed

+7223
-4204
lines changed

NOTES-DEV.md

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# DEV Install - 2025-07-09
2+
3+
```shell
4+
cd ~/code
5+
git clone git@github.com:digris/openbroadcast.org.git openbroadcast.org
6+
```
7+
8+
## Backing Services
9+
10+
see `docker/docker-compose.yml`
11+
12+
```shell
13+
docker compose -f docker/docker-compose.yml up -d
14+
```
15+
16+
## Python
17+
18+
```shell
19+
pyenv install 2.7.18
20+
```
21+
22+
```shell
23+
~/.pyenv/versions/2.7.18/bin/pip \
24+
--trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org \
25+
install poetry
26+
27+
~/.pyenv/versions/2.7.18/bin/poetry --version
28+
# 1.1.15
29+
```
30+
31+
```shell
32+
~/.pyenv/versions/2.7.18/bin/poetry install
33+
```
34+
35+
```shell
36+
# activate virtualenv
37+
~/.pyenv/versions/2.7.18/bin/poetry shell
38+
```
39+
40+
```shell
41+
nvm install v20
42+
nvm use 20
43+
nvm install yarn
44+
yarn install
45+
```
46+
47+
48+
```shell
49+
brew install \
50+
libmagic \
51+
imagemagick \
52+
lame \
53+
sox \
54+
faad2 \
55+
ffmpeg
56+
```
57+
58+
59+
60+
## Post Install
61+
62+
```shell
63+
./manage.py search_index --create
64+
```
65+
66+
```shell
67+
# search indexes
68+
./manage.py search_index --populate --models alibrary.playlist
69+
```
70+
71+
72+
```shell
73+
./manage.py runserver 0.0.0.0:8080
74+
```

0 commit comments

Comments
 (0)