-
Notifications
You must be signed in to change notification settings - Fork 0
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 #32 from diging/develop
Prepare release
- Loading branch information
Showing
11,864 changed files
with
4,219 additions
and
1,361,379 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
POSTGRES_DB=postgres | ||
POSTGRES_NAME=postgres | ||
POSTGRES_USER=postgres | ||
POSTGRES_PASSWORD=postgres |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
DB_PORT=5432 | ||
WEB_PORT=8000 |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export SECRET_KEY= | ||
#you can use EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend to get emails in the terminal just to test it in a dev enviornment so you wouldnt have to set any other EMAIL variables | ||
export EMAIL_BACKEND= | ||
export EMAIL_HOST= | ||
export EMAIL_HOST_USER= | ||
export EMAIL_HOST_PASSWORD= | ||
export EMAIL_PORT= | ||
export EMAIL_USE_TLS= | ||
export CONCEPTPOWER_USERID= | ||
export CONCEPTPOWER_PASSWORD= | ||
export CONCEPTPOWER_ENDPOINT= | ||
export CONCEPTPOWER_NAMESPACE= | ||
# Ensure the BASE_URL does not include APP_ROOT | ||
export BASE_URL="http://localhost:8000/" | ||
# Make sure APP_ROOT variable ends with a / | ||
# this is the prefix that vogon will be deployed under (e.g. "vogon-2" for deployment at my-server.org/vogon-2) | ||
export APP_ROOT= |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Guidelines for Pull Requests | ||
|
||
If you haven't yet read our code review guidelines, please do so, You can find them [here](https://diging.atlassian.net/wiki/spaces/DIGING/pages/2256076801/Code+Review+Guidelines). | ||
|
||
Please confirm the following by adding an x for each item (turn `[ ]` into `[x]`). | ||
|
||
- [ ] I have removed all code style changes that are not necessary (e.g. changing blanks across the whole file that don’t need to be changed, adding empty lines in parts other than your own code) | ||
- [ ] I am not making any changes to files that don’t have any effect (e.g. imports added that don’t need to be added) | ||
- [ ] I do not have any sysout statements in my code or commented out code that isn’t needed anymore | ||
- [ ] I am not reformatting any files in the wrong format or without cause. | ||
- [ ] I am not changing file encoding or line endings to something else than UTF-8, LF | ||
- [ ] My pull request does not show an insane amount of files being changed although my ticket only requires a few files being changed | ||
- [ ] I have added Javadoc/documentation where appropriate | ||
- [ ] I have added test cases where appropriate | ||
- [ ] I have explained any part of my code/implementation decisions that is not be self-explanatory | ||
|
||
## Please provide a brief description of your ticket | ||
<!-- you can copy the ticket if it hasn't changed --> | ||
|
||
... Put ticket description here and add link to ticket ... | ||
|
||
## Are there any other pull requests that this one depends on? | ||
<!-- list pull request here (with links) --> | ||
|
||
## Anything else the reviewer needs to know? | ||
|
||
... describe here ... |
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 |
---|---|---|
|
@@ -166,4 +166,8 @@ data/files/* | |
data/db/* | ||
|
||
#Mac Files | ||
**/.DS_Store | ||
**/.DS_Store | ||
.DS_Store | ||
|
||
#Staticfiles | ||
staticfiles/ |
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,7 +1,11 @@ | ||
# vogon-resuscitate | ||
Resuscitated Vogon that works without Vue.js | ||
|
||
#Setup | ||
- Run (`Docker compose Build`) | ||
- Then run (`Docker compose up`) | ||
Note: You may need to run these commands using sudo | ||
# Setup | ||
To run Vogon, copy and rename the following files: | ||
- `.env_app-example` to `.env_app` and define the variables in the file. | ||
|
||
If you are using the production docker-compose set up (`docker-compose-prod.yml`) you will have to do the same for `.env-example` and `.docker-env-example`, in which `.env` needs to contain the variables that are in required in the docker-compose file, while `.docker-env` should contain all environment variables needed inside the Docker containers. | ||
|
||
# Startup | ||
Run `docker compose up` inside the directory that holds the `docker-compose.yml` file. |
Binary file not shown.
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
Oops, something went wrong.