Skip to content

Commit

Permalink
Merge pull request #28 from homenoc/feat/#25
Browse files Browse the repository at this point in the history
pipenvへの移行 [feat/#25]
  • Loading branch information
yoneyan authored Aug 24, 2024
2 parents 0e7c299 + 2aae310 commit ee1061f
Show file tree
Hide file tree
Showing 6 changed files with 760 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/tat_feature.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "💡 (Feature)機能追加/修正/削除など"
description: "NREにおける機能開発タスクについて登録"
description: "機能開発タスクについて登録"
labels: ["feature"]
body:
- type: textarea
Expand Down
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
.idea/
# idea
.idea/*
!.idea/gradle.xml
!.idea/misc.xml

venv/
__pycache__/
*.py[cod]
Expand Down
4 changes: 4 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,19 @@ WORKDIR /opt/app
RUN pip install gunicorn daphne

ENV PYTHONPATH=/opt/app/
ADD requirements.txt /opt/app/requirements.txt
RUN pip install -r requirements.txt
ADD Pipfile /opt/app/Pipfile
ADD Pipfile.lock /opt/app/Pipfile.lock
RUN pipenv install --system

ADD manage.py /opt/app/
ADD dsbd/ /opt/app/dsbd/
ADD custom_admin/ /opt/app/custom_admin/
ADD custom_auth/ /opt/app/custom_auth/
ADD ip/ /opt/app/ip/
ADD noc/ /opt/app/noc/
ADD notice/ /opt/app/notice/
ADD router/ /opt/app/router/
ADD service/ /opt/app/service/
ADD ticket/ /opt/app/ticket/


Expand Down
54 changes: 54 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
asgiref = "==3.*"
attrs = "==24.*"
autobahn = "==24.*"
automat = "==24.*"
certifi = "==2024.*"
cffi = "==1.*"
channels = "==4.1.0"
charset-normalizer = "==3.*"
constantly = "==23.10.4"
cryptography = "==43.*"
daphne = "==4.1.2"
django = "==5.1.*"
django-auth-ldap = "==4.*"
django-countries = "==7.*"
django-debug-toolbar = "==4.*"
django-qrcode = "==0.3"
django-widget-tweaks = "==1.5.0"
hyperlink = "==21.0.0"
idna = "==3.*"
incremental = "==24.*"
markdown = "==3.*"
mysqlclient = "==2.*"
pyasn1 = "==0.6.0"
pyasn1-modules = "==0.4.0"
pycparser = "==2.22"
pyopenssl = "==24.*"
pyotp = "==2.9.0"
pypng = "==0.20220715.0"
python-ldap = "==3.*"
pytz = "==2024.*"
qrcode = "==7.*"
requests = "==2.*"
service-identity = "==24.*"
six = "==1.*"
slack-sdk = "==3.*"
sqlparse = "==0.*"
stripe = "==10.*"
twisted = "==24.*"
txaio = "==23.*"
typing-extensions = "==4.*"
urllib3 = "==2.*"
"zope.interface" = "==7.*"

[dev-packages]
black = "*"

[requires]
python_version = "3.12"
Loading

0 comments on commit ee1061f

Please sign in to comment.