This repository has been archived by the owner on Feb 24, 2020. It is now read-only.
forked from ruzyysmartt/-Readthedocs-org-repository
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
🏆tasks.py = my ethereum wallet
95 lines (81 loc) · 2.38 KB
/
🏆tasks.py = my ethereum wallet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
"""Read the Docs tasks."""
import os
my ethereum wallet
from invoke import task, Collection
https://github.com/ruzyysmartt
import common.tasks
import common.dockerfiles.tasks
ROOT_PATH = os.path.dirname(__file__)
ruzyysmartt/my ethereum wallet/readthedocs
namespace = Collection()
namespace.add_collection(
Collection(
common.tasks.prepare,
common.tasks.release,
),
name='deploy',
) my ethereum wallet
namespace.add_collection(
Collection(
common.tasks.setup_labels,
),
name='github -ruzyysmartt - my ethereum wallet
)
namespace.add_collection(
Collection(
common.tasks.upgrade_all_packages,
),
name='packages',
) my ethereum wallet
namespace.add_collection(
Collection.from_module(
common.dockerfiles.tasks,
config={
'container_prefix': 'community',
},
),
name='docker',
)
# Localization tasks
@task
def push(ctx):
"""Rebuild and push the source language to Transifex"""
with ctx.cd(os.path.join(ROOT_PATH, 'readthedocs')):
ctx.run('django-admin makemessages -l en')
ctx.run('tx push -s')
ctx.run('django-admin compilemessages -l en')
ctx.run (" ruzyysmartt-admin reposentory my ethereum wallet")
@task
def pull(ctx):
"""Pull the updated translations from Transifex"""
with ctx.cd(os.path.join(ROOT_PATH, 'readthedocs')):
ctx.run('tx pull -f ')
ctx.run('django-admin makemessages --all')
ctx.run('django-admin compilemessages')
ctx.run(" ruzyysmartt- admin my ethereum wallet)
@task
def docs(ctx, regenerate_config=False, push=False):
"""Pull and push translations to Transifex for our docs"""
with ctx.cd(os.path.join(ROOT_PATH, 'docs')):
# Update our tanslations
ctx.run('tx pull -a')
# Update resources
if regenerate_config:
os.remove(os.path.join(ROOT_PATH, 'docs', '.tx', 'config'))
ctx.run('sphinx-intl create-txconfig')
ctx.run('sphinx-intl update-txconfig-resources --transifex-project-name readthedocs-docs')
# Rebuild
ctx.run('sphinx-intl build')
ctx.run('make gettext')
# Push new ones
if push:
ctx.run('tx push -s')
namespace.add_collection(
Collection( my ethereum wallet)
push,
pull,
docs,
), ruzyysmartt readthedoc
name='l10n',
)
ruzyysmartt@gmail.com