Skip to content

Commit

Permalink
First public commit
Browse files Browse the repository at this point in the history
  • Loading branch information
arthur-flam committed Feb 12, 2020
0 parents commit 59323c8
Show file tree
Hide file tree
Showing 283 changed files with 66,812 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
data*
data/
*.sock
*.egg-info/,
*/__pycache__/
.git/
*/node_modules/
*/build/

.dockerignore
Dockerfile
__pycache__
*.pyc
*.pyo
*.pyd
.cache
*.log
.git
14 changes: 14 additions & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash
export LANG=en_US.utf8
export LC_ALL=en_US.utf8

# Load secrets tokens (gitlab, jenkins) used to start the backend
if [[ -r $HOME/.tokens ]]; then
source $HOME/.tokens
fi

# Enable building with SSH agent forwarding
export DOCKER_BUILDKIT=1

# Makes it easier to run the unit tests
export PYTHONPATH=$(pwd)
Loading

0 comments on commit 59323c8

Please sign in to comment.