Skip to content

Commit

Permalink
Merge pull request #146 from PnX-SI/dev
Browse files Browse the repository at this point in the history
First master release (unstable version with some issues to fix)
  • Loading branch information
lpofredc authored Jul 8, 2019
2 parents 79b7fec + 99ce9bf commit 3ac16f5
Show file tree
Hide file tree
Showing 276 changed files with 29,116 additions and 3,897 deletions.
4 changes: 4 additions & 0 deletions .angulardoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"repoId": "2b14cce7-db7a-476a-a8b9-f41927e3728b",
"lastSync": 0
}
121 changes: 49 additions & 72 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Logs
var
logs
*.log
npm-debug.log*
Expand Down Expand Up @@ -32,18 +33,15 @@ bower_components
# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/
node_modules
jspm_packages

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm
.npm/

# Optional eslint cache
.eslintcache
Expand All @@ -64,90 +62,40 @@ typings/
.next

# JetBrains editors
.idea


# Created by https://www.gitignore.io/api/vim,python,pycharm+all

### PyCharm+all ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml

# Gradle
.idea/**/gradle.xml
.idea/**/libraries

# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
.idea/

# CMake
cmake-build-*/

# Mongo Explorer plugin
.idea/**/mongoSettings.xml
cmake-build-*

# File-based project format
*.iws

# IntelliJ
out/
out

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Cursive Clojure plugin
.idea/replstate.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

# Editor-based Rest Client
.idea/httpRequests

### PyCharm+all Patch ###
# Ignores the whole .idea folder and all .iml files
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360

.idea/

# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023

*.iml
modules.xml
.idea/misc.xml
*.ipr

.vscode/

### Python ###
# https://github.com/github/gitignore/blob/master/Python.gitignore
# Byte-compiled / optimized / DLL files
__pycache__/
__pycache__
*.py[cod]
*$py.class

Expand All @@ -168,6 +116,7 @@ parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
Expand All @@ -183,6 +132,10 @@ MANIFEST
pip-log.txt
pip-delete-this-directory.txt

# pipenv: comment when migrating from traditional pip+v(irtual)env
backend/Pipfile
backend/Pipfile.lock

# Unit test / coverage reports
htmlcov/
.tox/
Expand Down Expand Up @@ -212,14 +165,21 @@ instance/
.scrapy

# Sphinx documentation
docs/_build/
docs/_build

# mkdocs documentation
/site

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

Expand All @@ -233,7 +193,9 @@ celerybeat-schedule
.env
.venv
env/
venv
venv/
.venv/
ENV/
env.bak/
venv.bak/
Expand All @@ -245,14 +207,13 @@ venv.bak/
# Rope project settings
.ropeproject

# mkdocs documentation
/site

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

### Python Patch ###
.venv/
# Pyre type checker
.pyre/

### Vim ###
# Swap
Expand All @@ -273,10 +234,26 @@ tags
# Persistent undo
[._]*.un~


# End of https://www.gitignore.io/api/vim,python,pycharm+all
#
config/default_config.toml

external_modules/gnc_*
contrib/gnc_*

*.pyc

#FrontEnd config files
frontend/src/conf/*.ts

# pipenv: comment when migrating from traditional pip+v(irtual)env
Pipfile
Pipfile.lock

media/
frontend/ssl

# Custom files
frontend/src/custom/custom.css
frontend/src/custom/images/*.png
frontend/src/custom/images/*.jpg

data/tmp
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.1.0 (unstable version)
Binary file removed backend/__pycache__/GnCitizenAPI.cpython-35.pyc
Binary file not shown.
Binary file removed backend/__pycache__/__init__.cpython-35.pyc
Binary file not shown.
Binary file removed backend/__pycache__/gcnserver.cpython-35.pyc
Binary file not shown.
Binary file removed backend/__pycache__/server.cpython-35.pyc
Binary file not shown.
22 changes: 22 additions & 0 deletions backend/dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
-i https://pypi.org/simple
astroid==2.0.4
autopep8==1.4.2
future==0.17.1
isort==4.3.4
jedi==0.13.3
lazy-object-proxy==1.3.1
mccabe==0.6.1
parso==0.4.0
pluggy==0.9.0
pycodestyle==2.4.0
pydocstyle==3.0.0
pyflakes==2.1.1
pylint==2.1.1
python-jsonrpc-server==0.1.2
python-language-server[all]==0.26.1
rope==0.14.0
six==1.11.0
snowballstemmer==1.2.1
typed-ast==1.1.0
wrapt==1.10.11
yapf==0.27.0
Binary file removed backend/gncitizen/__pycache__/__init__.cpython-35.pyc
Binary file not shown.
79 changes: 0 additions & 79 deletions backend/gncitizen/auth/models.py

This file was deleted.

Loading

0 comments on commit 3ac16f5

Please sign in to comment.