Skip to content

Commit

Permalink
[PKD-47]: migrate to python
Browse files Browse the repository at this point in the history
migrate to python from node
  • Loading branch information
almogko authored Sep 8, 2024
1 parent bf04dbc commit 21e1410
Show file tree
Hide file tree
Showing 36 changed files with 1,278 additions and 3,262 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/update_schema.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Update OpenAPI Schema

on:
push:
paths:
- 'server/**'
pull_request:
paths:
- 'server/**'
branches:
- main

permissions:
contents: write

jobs:
update-schema:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12.5'

- name: Install dependencies with Pipenv
run: |
pip install pipenv
pipenv install --dev
working-directory: ./server

- name: Generate OpenAPI Schema
run: |
pipenv run python manage.py spectacular --color --file schema.yml
ls -lsa
working-directory: ./server
env:
DJANGO_SECRET_KEY: ${{ secrets.DJANGO_SECRET_KEY }}

- name: Force commit and push schema file
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "actions@github.com"
git add schema.yml
git commit -m "Force update OpenAPI schema" || echo "No changes to commit"
git push origin HEAD:${{ github.head_ref }}
working-directory: ./server
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Django",
"type": "debugpy",
"request": "launch",
"args": [
"runserver"
],
"django": true,
"autoStartBrowser": false,
"program": "${workspaceFolder}\\server\\manage.py"
}
]
}
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"cSpell.words": ["pokeball", "pokeballs", "Pokédex", "Pokemons", "pokemon", "pokemons", "Pokemon"]
"cSpell.words": ["pokeball", "pokeballs", "pokebase", "Pokédex", "pokemon", "Pokemon", "pokemons", "Pokemons"]
}
180 changes: 162 additions & 18 deletions server/.gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,162 @@
# OSX
#
.DS_Store


# node.js
#
node_modules/
npm-debug.log
yarn-error.log

# Yarn
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock

# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
.pdm.toml
.pdm-python
.pdm-build/

# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
15 changes: 0 additions & 15 deletions server/.prettierrc

This file was deleted.

874 changes: 0 additions & 874 deletions server/.yarn/releases/yarn-3.6.4.cjs

This file was deleted.

2 changes: 0 additions & 2 deletions server/.yarnrc.yml

This file was deleted.

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

[packages]
django = "*"
pokebase = "*"
drf_spectacular = "*"
python-decouple = "*"

[dev-packages]

[requires]
python_version = "3.12"
Loading

0 comments on commit 21e1410

Please sign in to comment.