Skip to content

Commit 895e34b

Browse files
committed
Merge branch 'slim-it-down' into 1--k8sify
2 parents 3b0746e + 12b805e commit 895e34b

File tree

3 files changed

+4
-131
lines changed

3 files changed

+4
-131
lines changed

.gitignore

Lines changed: 0 additions & 129 deletions
Original file line numberDiff line numberDiff line change
@@ -3,110 +3,6 @@
33

44
# Byte-compiled / optimized / DLL files
55
__pycache__/
6-
*.py[cod]
7-
*$py.class
8-
9-
# C extensions
10-
*.so
11-
12-
# Distribution / packaging
13-
.Python
14-
build/
15-
develop-eggs/
16-
dist/
17-
downloads/
18-
eggs/
19-
.eggs/
20-
lib/
21-
lib64/
22-
parts/
23-
sdist/
24-
var/
25-
wheels/
26-
pip-wheel-metadata/
27-
share/python-wheels/
28-
*.egg-info/
29-
.installed.cfg
30-
*.egg
31-
MANIFEST
32-
33-
# PyInstaller
34-
# Usually these files are written by a python script from a template
35-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
36-
*.manifest
37-
*.spec
38-
39-
# Installer logs
40-
pip-log.txt
41-
pip-delete-this-directory.txt
42-
43-
# Unit test / coverage reports
44-
htmlcov/
45-
.tox/
46-
.nox/
47-
.coverage
48-
.coverage.*
49-
.cache
50-
nosetests.xml
51-
coverage.xml
52-
*.cover
53-
*.py,cover
54-
.hypothesis/
55-
.pytest_cache/
56-
cover/
57-
58-
# Translations
59-
*.mo
60-
*.pot
61-
62-
# Django stuff:
63-
*.log
64-
local_settings.py
65-
db.sqlite3
66-
db.sqlite3-journal
67-
68-
# Flask stuff:
69-
instance/
70-
.webassets-cache
71-
72-
# Scrapy stuff:
73-
.scrapy
74-
75-
# Sphinx documentation
76-
docs/_build/
77-
78-
# PyBuilder
79-
.pybuilder/
80-
target/
81-
82-
# Jupyter Notebook
83-
.ipynb_checkpoints
84-
85-
# IPython
86-
profile_default/
87-
ipython_config.py
88-
89-
# pyenv
90-
# For a library or package, you might want to ignore these files since the code is
91-
# intended to run in multiple environments; otherwise, check them in:
92-
# .python-version
93-
94-
# pipenv
95-
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
96-
# However, in case of collaboration, if having platform-specific dependencies or dependencies
97-
# having no cross-platform support, pipenv may install dependencies that don't work, or not
98-
# install all needed dependencies.
99-
#Pipfile.lock
100-
101-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
102-
__pypackages__/
103-
104-
# Celery stuff
105-
celerybeat-schedule
106-
celerybeat.pid
107-
108-
# SageMath parsed files
109-
*.sage.py
1106

1117
# Environments
1128
.env
@@ -117,30 +13,5 @@ ENV/
11713
env.bak/
11814
venv.bak/
11915

120-
# Spyder project settings
121-
.spyderproject
122-
.spyproject
123-
124-
# Rope project settings
125-
.ropeproject
126-
127-
# mkdocs documentation
128-
/site
129-
13016
# mypy
13117
.mypy_cache/
132-
.dmypy.json
133-
dmypy.json
134-
135-
# Pyre type checker
136-
.pyre/
137-
138-
# pytype static type analyzer
139-
.pytype/
140-
141-
# Cython debug symbols
142-
cython_debug/
143-
144-
# static files generated from Django application using `collectstatic`
145-
media
146-
static

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ streamlit run app.py
2727

2828
### With `conda`
2929
```bash
30-
conda create -f environment.yml
30+
conda env create -f environment.yml
3131
source activate chime
32+
pip install streamlit
3233
streamlit run app.py
3334
```
3435

@@ -46,6 +47,8 @@ port (as described above), then you also have to set `PORT` in the `.env` file.
4647

4748
**NOTE** this is just for usage, not for development--- you would have to restart and possibly rebuild the app every time you change the code.
4849

50+
If you'd like to use `docker-compose` for development, please run `docker-compose up --build` every time you make changes.
51+
4952
## Deployment
5053
**Before you push your changes to master make sure that everything works in development mode.**
5154

environment.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ channels:
44
- conda-forge
55
dependencies:
66
- python>=3.6
7-
- streamlit
87
- numpy
98
- pandas
109
- altair

0 commit comments

Comments
 (0)