Skip to content

Commit b68eecb

Browse files
recover dot files
1 parent 0193f64 commit b68eecb

File tree

14 files changed

+511
-0
lines changed

14 files changed

+511
-0
lines changed

.dockerignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.editorconfig
2+
.gitattributes
3+
.github
4+
.gitignore
5+
.gitlab-ci.yml
6+
.idea
7+
.pre-commit-config.yaml
8+
.readthedocs.yml
9+
.travis.yml
10+
venv

.editorconfig

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.{py,rst,ini}]
12+
indent_style = space
13+
indent_size = 4
14+
15+
[*.{html,css,scss,json,yml}]
16+
indent_style = space
17+
indent_size = 2
18+
19+
[*.md]
20+
trim_trailing_whitespace = false
21+
22+
[Makefile]
23+
indent_style = tab
24+
25+
[nginx.conf]
26+
indent_style = space
27+
indent_size = 2

.envs/.local/.django

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# General
2+
# ------------------------------------------------------------------------------
3+
USE_DOCKER=yes
4+
IPYTHONDIR=/app/.ipython
5+
# Redis
6+
# ------------------------------------------------------------------------------
7+
REDIS_URL=redis://redis:6379/0
8+
9+
# Celery
10+
# ------------------------------------------------------------------------------
11+
12+
# Flower
13+
CELERY_FLOWER_USER=GMtEsdghDHsjvEsKUfQMCfbzflIFqaxb
14+
CELERY_FLOWER_PASSWORD=M05Q4nB10E0bXypY6VtVzKuYL5EXlsKA7C7GhhlfaLjXxHkyh3Voz7fTJMDz95sI
15+

.envs/.local/.postgres

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# PostgreSQL
2+
# ------------------------------------------------------------------------------
3+
POSTGRES_HOST=postgres
4+
POSTGRES_PORT=5432
5+
POSTGRES_DB=gfbio_collections
6+
POSTGRES_USER=DjxWRGKdYHdMpcHpydhXCxuSDjiZisYu
7+
POSTGRES_PASSWORD=BGeo39knb7h4dthY1m4NlNRE7csKAjFdEOnZblqd8tQ8Q7hrCVOg8ZBHMkjOyLoU

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

0 commit comments

Comments
 (0)