Compare commits
11 Commits
6937dd6ba0
...
main
Author | SHA1 | Date | |
---|---|---|---|
20a0cd882e | |||
e9e2c77d26 | |||
600eaa2c47 | |||
e36d688eed | |||
c31c410827 | |||
8ddaba773b | |||
495db314e4 | |||
d2f9470ca4 | |||
ea0520e681 | |||
6191009bc9 | |||
e60c544989 |
32
README.md
32
README.md
@ -15,15 +15,26 @@
|
||||
```
|
||||
$ git clone git@git.startinblox.com:djangoldp-packages/djangoldp.git
|
||||
```
|
||||
and install it:
|
||||
and install it:
|
||||
```
|
||||
$ cd $PROJECT_FOLDER/djangoldp
|
||||
$ pip install -e .
|
||||
$ pip install psycopg2 pycryptodomex # is this still needed?
|
||||
```
|
||||
|
||||
HERE, we probs want to checkout https://git.startinblox.com/djangoldp-packages/djangoldp-webpushnotification right? And then `pip install -e` it?
|
||||
|
||||
|
||||
|
||||
|
||||
6. Check out this very repository:
|
||||
```
|
||||
$ git clone https://git.autonomic.zone/decentral1se/startinblox-startinoff
|
||||
$ cd startinblox-startinoff
|
||||
```
|
||||
and copy example settings to `settings.yml`:
|
||||
```
|
||||
$ cp example-settings.yml settings.yml
|
||||
```
|
||||
7. Install dependencies:
|
||||
```
|
||||
@ -37,6 +48,11 @@
|
||||
```
|
||||
$ python manage.py creatersakey
|
||||
```
|
||||
10. Create super user
|
||||
```
|
||||
$ python manage.py createsuperuser
|
||||
```
|
||||
|
||||
9. Launch the development server:
|
||||
```
|
||||
$ python manage.py runserver
|
||||
@ -54,6 +70,9 @@ cd hubl
|
||||
npm install
|
||||
```
|
||||
|
||||
OR use our repo of it https://git.autonomic.zone/autonomic-cooperative/hubl
|
||||
|
||||
|
||||
Then, add the following as `config.json` in your hubl folder.
|
||||
|
||||
```
|
||||
@ -152,13 +171,7 @@ Then, add the following as `config.json` in your hubl folder.
|
||||
}
|
||||
```
|
||||
|
||||
Then install Node dependencies:
|
||||
|
||||
```
|
||||
npm install
|
||||
```
|
||||
|
||||
and launch the server with:
|
||||
Then launch the server with:
|
||||
|
||||
```
|
||||
npm run watch
|
||||
@ -215,3 +228,6 @@ its warm embrace. To do so:
|
||||
|
||||
* `No module named 'oidc_provider.lib.utils.dpop'`
|
||||
* Make sure you're in the right virtualenv!
|
||||
|
||||
* Database broken!
|
||||
* Run `python manage.py reset_db` to reset it
|
||||
|
@ -1,36 +1,97 @@
|
||||
dependencies:
|
||||
- djangoldp_account
|
||||
- djangoldp_notification
|
||||
- django-webpush
|
||||
- djangoldp-i18n
|
||||
- djangoldp-account
|
||||
- djangoldp-notification
|
||||
- djangoldp-dashboard
|
||||
- djangoldp-profile
|
||||
- djangoldp-community
|
||||
- djangoldp-joboffer
|
||||
- djangoldp-event
|
||||
- djangoldp-project
|
||||
# - djangoldp-invoice
|
||||
- djangoldp-contact
|
||||
- djangoldp-circle
|
||||
- djangoldp-conversation
|
||||
- djangoldp-uploader
|
||||
- djangoldp-skill
|
||||
- django-cors-headers
|
||||
|
||||
ldppackages:
|
||||
- djangoldp_account
|
||||
- djangoldp_notification
|
||||
- djangoldp_i18n
|
||||
- djangoldp_account
|
||||
- djangoldp_notification
|
||||
- djangoldp_dashboard
|
||||
- djangoldp_profile
|
||||
- djangoldp_community
|
||||
- djangoldp_joboffer
|
||||
- djangoldp_event
|
||||
- djangoldp_project
|
||||
# - djangoldp_invoice
|
||||
- djangoldp_contact
|
||||
- djangoldp_circle
|
||||
- djangoldp_conversation
|
||||
- djangoldp_uploader
|
||||
- djangoldp_skill
|
||||
- djangoldp_webpushnotification
|
||||
|
||||
server:
|
||||
DEBUG: true
|
||||
ALLOWED_HOSTS:
|
||||
- "*"
|
||||
SECRET_KEY: "ak$t4x@9pcs$ypwt_m38)vcg^m=q@j7*2rs2gu7%h0wwcv)(y2"
|
||||
DATABASES:
|
||||
default:
|
||||
ENGINE: django.db.backends.postgresql_psycopg2
|
||||
NAME: djangoldp
|
||||
USER: postgres
|
||||
LDP_RDF_CONTEXT: https://cdn.happy-dev.fr/owl/hdcontext.jsonld
|
||||
ALLOWED_HOSTS:
|
||||
- http://localhost
|
||||
- http://localhost:8000
|
||||
- "*"
|
||||
BASE_URL: http://localhost:8000
|
||||
SITE_URL: http://localhost:8000
|
||||
DEBUG: True
|
||||
|
||||
EMAIL_BACKEND: django.core.mail.backends.console.EmailBackend
|
||||
INSTANCE_DEFAULT_CLIENT: http://localhost:9000
|
||||
DEFAULT_REQUEST_TIMEOUT: 120
|
||||
DEFAULT_BACKOFF_FACTOR: 2
|
||||
MAX_ACTIVITY_RESCHEDULES: 4
|
||||
USE_I18N: True
|
||||
|
||||
# defaults to SQLite if not provided
|
||||
#DATABASES:
|
||||
# default:
|
||||
# ENGINE: django.db.backends.postgresql_psycopg2
|
||||
# NAME: djangoldp
|
||||
# USER: postgres
|
||||
|
||||
JABBER_DEFAULT_HOST: licoornes.startinblox.com
|
||||
MEDIA_ROOT: media
|
||||
PROSODY_HTTP_URL: https://jabber.happy-dev.fr
|
||||
REGISTRATION_OPEN: true
|
||||
ROOT_URLCONF: server.urls
|
||||
STATIC_ROOT: static
|
||||
# STATIC_URL: = '/static/'
|
||||
# STATICFILES_DIRS: = '/Users/trav/Documents/gitnsurge/autonomic/startinblox/startinblox-startinoff'
|
||||
MEDIA_ROOT: media
|
||||
|
||||
INSTALLED_APPS:
|
||||
- server
|
||||
- djangoldp_crypto # only needed by decentral1se for #236
|
||||
- webpush
|
||||
- django_extensions
|
||||
|
||||
EMAIL_ON_ACCOUNT_CREATION: True
|
||||
DEFAULT_SUPERUSER_PERMS: []
|
||||
OIDC_ACCESS_CONTROL_ALLOW_HEADERS: 'authorization, Content-Type, if-match, accept, sentry-trace, DPoP'
|
||||
|
||||
WEBPUSH_SETTINGS:
|
||||
VAPID_PUBLIC_KEY: "BIDVJ0sd4Cyycf_aGCxhQ_SmXBneWboI3wGO-Iyj3ofeGkvYyNp5o6W9eTf13YkJSz6NlRwiCHA08m8e82n5WXI"
|
||||
VAPID_PRIVATE_KEY: "zQ-Apj3yLGvcq-l_YNFMFgNVBxQ5_JYEsUbZA36Yhes"
|
||||
VAPID_ADMIN_EMAIL: "trav@teafry.me"
|
||||
VAPID_ADMIN_EMAIL: "test@example.com"
|
||||
|
||||
MIDDLEWARE:
|
||||
- 'corsheaders.middleware.CorsMiddleware'
|
||||
|
||||
CORS_ALLOWED_ORIGINS:
|
||||
- "http://localhost:1234"
|
||||
|
||||
CORS_ALLOW_HEADERS:
|
||||
- 'accept'
|
||||
- 'accept-encoding'
|
||||
- 'authorization'
|
||||
- 'content-type'
|
||||
- 'dnt'
|
||||
- 'origin'
|
||||
- 'user-agent'
|
||||
- 'x-csrftoken'
|
||||
- 'x-requested-with'
|
||||
- 'dpop'
|
||||
|
||||
CORS_ALLOW_CREDENTIALS: True
|
||||
|
||||
|
BIN
media/netscape-throbber.gif
Normal file
BIN
media/netscape-throbber.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 364 KiB |
74
settings.yml.old
Normal file
74
settings.yml.old
Normal file
@ -0,0 +1,74 @@
|
||||
dependencies:
|
||||
- djangoldp-dashboard
|
||||
- djangoldp_invoice
|
||||
- djangoldp_contact
|
||||
- djangoldp-account
|
||||
- djangoldp-circle
|
||||
- djangoldp-conversation
|
||||
- djangoldp-joboffer
|
||||
- djangoldp-notification
|
||||
- djangoldp-profile
|
||||
- djangoldp-project
|
||||
- djangoldp-uploader
|
||||
- djangoldp-skill
|
||||
- djangoldp-i18n
|
||||
- djangoldp-community
|
||||
- django-webidoidc-provider
|
||||
- djangoldp-event
|
||||
- djangoldp-resource
|
||||
- djangoldp-polls
|
||||
- djangoldp-digest
|
||||
|
||||
ldppackages:
|
||||
- djangoldp_i18n
|
||||
- djangoldp_dashboard
|
||||
- djangoldp_account
|
||||
- djangoldp_invoice
|
||||
- djangoldp_contact
|
||||
- djangoldp_community
|
||||
- djangoldp_circle
|
||||
- djangoldp_conversation
|
||||
- djangoldp_joboffer
|
||||
- djangoldp_notification
|
||||
- djangoldp_profile
|
||||
- djangoldp_project
|
||||
- djangoldp_uploader
|
||||
- djangoldp_skill
|
||||
- djangoldp_event
|
||||
- djangoldp_resource
|
||||
- djangoldp_polls
|
||||
- djangoldp_digest
|
||||
- djangoldp_webpushnotification
|
||||
|
||||
server:
|
||||
# DjangoLDP required settings
|
||||
DEBUG: true
|
||||
ALLOWED_HOSTS:
|
||||
- '*'
|
||||
SECRET_KEY: 'some-random'
|
||||
DATABASES:
|
||||
default:
|
||||
ENGINE: django.db.backends.sqlite3
|
||||
NAME: db.sqlite3
|
||||
LDP_RDF_CONTEXT: https://cdn.happy-dev.fr/owl/hdcontext.jsonld
|
||||
ROOT_URLCONF: server.urls
|
||||
STATIC_ROOT: static
|
||||
MEDIA_ROOT: media
|
||||
USE_I18N: True
|
||||
BASE_URL: http://localhost:8000
|
||||
SITE_URL: http://localhost:8000
|
||||
EMAIL_BACKEND: django.core.mail.backends.console.EmailBackend
|
||||
PROSODY_HTTP_URL: http://localhost:4848
|
||||
JABBER_DEFAULT_HOST: no.jabber
|
||||
REGISTRATION_OPEN: True
|
||||
INSTANCE_DEFAULT_CLIENT: http://localhost:1234
|
||||
EMAIL_ON_ACCOUNT_CREATION: False
|
||||
DEFAULT_REQUEST_TIMEOUT: 120
|
||||
DEFAULT_BACKOFF_FACTOR: 1
|
||||
MAX_ACTIVITY_RESCHEDULES: 4
|
||||
OIDC_ACCESS_CONTROL_ALLOW_HEADERS: 'authorization, Content-Type, if-match, accept, sentry-trace, DPoP'
|
||||
DEFAULT_SUPERUSER_PERMS: []
|
||||
DCS_SESSION_COOKIE_SAMESITE: 'None'
|
||||
DCS_SESSION_COOKIE_SECURE: False
|
||||
CSRF_COOKIE_SAMESITE: 'lax'
|
||||
CSRF_COOKIE_SECURE: False
|
Reference in New Issue
Block a user