-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from maykinmedia/default-project
Default project
- Loading branch information
Showing
24 changed files
with
1,271 additions
and
630 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
CREATE USER {{ project_name|lower }}; | ||
CREATE DATABASE {{ project_name|lower }}; | ||
GRANT ALL PRIVILEGES ON DATABASE {{ project_name|lower }} TO {{ project_name|lower }}; | ||
CREATE USER open_producten; | ||
CREATE DATABASE open_producten; | ||
GRANT ALL PRIVILEGES ON DATABASE open_producten TO open_producten; | ||
-- On Postgres 15+, connect to the database and grant schema permissions. | ||
-- GRANT USAGE, CREATE ON SCHEMA public TO openforms; | ||
-- GRANT USAGE, CREATE ON SCHEMA public TO openforms; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,12 @@ | ||
# Core python libraries | ||
Pillow # handle images | ||
psycopg2 # database driver | ||
python-dotenv # environment variables for secrets | ||
python-decouple # processing of envvar configs | ||
|
||
open-api-framework | ||
|
||
# Framework libraries | ||
django ~= 4.2 | ||
django-admin-index | ||
django-axes | ||
django-hijack | ||
django-redis | ||
django-rosetta | ||
maykin-2fa | ||
# django-hijack | ||
# django-rosetta | ||
|
||
# API libraries | ||
# djangorestframework | ||
# django-extra-fields | ||
# django-filter | ||
# drf-yasg # api documentation | ||
|
||
# WSGI servers & monitoring - production oriented | ||
uwsgi | ||
sentry-sdk # error monitoring | ||
elastic-apm # Elastic APM integration |
Oops, something went wrong.