Skip to content

Commit 00d41f3

Browse files
Merge pull request #307 from CodeForPhilly/fixes/workspace-cleanup
Clean up workspace and restore Heroku deploy
2 parents c9e5c7e + 228af10 commit 00d41f3

File tree

13 files changed

+29
-35
lines changed

13 files changed

+29
-35
lines changed

.cache/v/cache/lastfailed

Lines changed: 0 additions & 3 deletions
This file was deleted.

.gitignore

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
# Editors
2-
.vscode/
32
.idea/
43

5-
# Byte-compiled / optimized / DLL files
6-
__pycache__/
7-
84
# Environments
95
.env
106
.venv
@@ -18,6 +14,9 @@ venv.bak/
1814
.mypy_cache/
1915
__pycache__/
2016

17+
# pytest
18+
.cache/
19+
2120
# Module trash
2221
*.egg-info
2322

.vscode/extensions.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3+
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
4+
5+
// List of extensions which should be recommended for users of this workspace.
6+
"recommendations": [
7+
"ms-python.python",
8+
"bungcip.better-toml",
9+
"davidanson.vscode-markdownlint"
10+
],
11+
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
12+
"unwantedRecommendations": [
13+
14+
]
15+
}

Procfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: STREAMLIT_SERVER_PORT=$PORT streamlit run src/app.py

Procfile.streamlit

Lines changed: 0 additions & 1 deletion
This file was deleted.

chime.code-workspace

Lines changed: 0 additions & 7 deletions
This file was deleted.

docs/SUMMARY.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@
1313
- [The `chime-live` Cluster](./operations/chime-live-cluster.md)
1414
- [Deploy to Heroku](./operations/heroku.md)
1515
- [Deploy to Your Own Cluster](./operations/byok8s.md)
16-
- [Limited Cluster Access for Deployment][1]
16+
- [Manual Validation](./operations/manual-validation.md)
17+
- [Limited Cluster Access for Deployment](./operations/limited-kubeconfigs/limited-kubeconfigs.md)
1718
- [Code of Conduct](CODE_OF_CONDUCT.md)
1819
- [Maintainers](MAINTAINERS.md)
1920
- [Glossary](GLOSSARY.md)
20-
21-
[1]: ./operations/limited-kubeconfigs/limited-kubeconfigs.md
File renamed without changes.

e2e/.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
node_modules/*
1+
node_modules/
2+
cypress/videos/
3+
cypress/screenshots/

e2e/cypress.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
{}
1+
{
2+
"baseUrl": "http://localhost:8000"
3+
}

0 commit comments

Comments
 (0)