Skip to content

Commit d1d9ea3

Browse files
author
brenner.silva01
committed
Initial commit
1 parent 4b6a128 commit d1d9ea3

File tree

163 files changed

+4552
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+4552
-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: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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+
[*.py]
16+
line_length = 88
17+
known_first_party = nfdi_collection,config
18+
multi_line_output = 3
19+
default_section = THIRDPARTY
20+
recursive = true
21+
skip = venv/
22+
skip_glob = **/migrations/*.py
23+
include_trailing_comma = true
24+
force_grid_wrap = 0
25+
use_parentheses = true
26+
27+
[*.{html,css,scss,json,yml}]
28+
indent_style = space
29+
indent_size = 2
30+
31+
[*.md]
32+
trim_trailing_whitespace = false
33+
34+
[Makefile]
35+
indent_style = tab
36+
37+
[nginx.conf]
38+
indent_style = space
39+
indent_size = 2

.envs/.local/.django

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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=GMOKIywVQkogtRyaehpXoDBpUDOmKzgc
14+
CELERY_FLOWER_PASSWORD=zLnKUew0iVEyOWylkhwS6jJHpEgEWjn79mNmvBvf2IUI1q6dE0AlBmZ35vKtQ8QB

.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=nfdi_collection
6+
POSTGRES_USER=cswgbuYXOloWbWNgnHvHsSVdlYxBYTSy
7+
POSTGRES_PASSWORD=UDFyHj5xvDaY15IkUNf2Mbq4mMHerVLYXdyKTbrR93FPjxqZ6inmCBtLerTJ28Sa

.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)