Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
pvyParts committed Jan 27, 2022
1 parent 1b9841e commit 090f1f1
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,21 @@ WIKIJS_API_KEY | "" | your global API key from the wiki admin section
WIKIJS_URL | "" | You Wiki's base URL
WIKIJS_AADISCORDBOT_INTEGRATION | True | Enables an AADiscordbot cog with the ability to search the wiki

If you have issues with auth not being able to access the wiki due to SSL/redirection or similar. ( Cloudlfair can cause issues)

Setting | default | Description
--- | --- | ---
WIKIJS_API_URL | WIKIJS_URL | URL Overide for API access

add this setting to your local py with a direct link to the wiki
```python
# if auth is on the same box as wiki
WIKIJS_API_URL = "http://localhost:3000"

# if auth is on a different machine you could use the public ip adress of that machine.
WIKIJS_API_URL = "http://10.0.0.150:3000"
```

## FAQ
* I lost admin when i registered my admin user.
* add a group called `Administrators` to your auth instance and give it to anyone who needs admin on the wiki.
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
from setuptools import find_packages, setup
from wikijs import VERSION
from wikijs import __VERSION__

install_requires = [
'graphqlclient',
Expand All @@ -15,7 +15,7 @@

setup(
name='allianceauth-wiki-js',
version=VERSION,
version=__VERSION__,
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
Expand All @@ -28,8 +28,8 @@
author_email='[email protected]',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
Expand Down
2 changes: 1 addition & 1 deletion wikijs/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.0.7"
__VERSION__ = "0.0.8"

0 comments on commit 090f1f1

Please sign in to comment.