blob: c54b3591dc875a825fc5276cd260d1bfa761cab0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Energyscripts
This is a small collection of scripts I use to collect information about my
energyconsumption.
## Set up venv
```
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
```
## Handling pip
```
# Create requirements.txt
pip3 freeze > requirements.txt
# Show outdated packages
pip3 list --outdated
# Upgrade package
pip3 install -U name
# Upgrade everything
pip3 install -U -r requirements.txt
# Update requirements.txt
pip3 freeze > requirements.txt
```
## Schema
Install schema
```
psql el < schema.sql
```
schema.sql created with:
```
pg_dump --schema-only --no-owner --no-privileges el
```
|