-
Notifications
You must be signed in to change notification settings - Fork 8
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 #38 from adzialocha/chore/rework
Chore: Rework
- Loading branch information
Showing
231 changed files
with
16,421 additions
and
12,896 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
{ | ||
"presets": [ | ||
"es2015", | ||
"stage-0", | ||
"react" | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"useBuiltIns": "usage" | ||
} | ||
], | ||
"@babel/preset-react" | ||
], | ||
"plugins": [ | ||
"add-module-exports", | ||
"transform-inline-environment-variables" | ||
"@babel/plugin-proposal-class-properties", | ||
"@babel/plugin-proposal-object-rest-spread" | ||
] | ||
} |
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 @@ | ||
> 1% | ||
last 4 versions |
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,62 +1,27 @@ | ||
# configuration | ||
CONFIG_URL=http://localhost:3000 | ||
CONFIG_TIMEZONE=Europe/Berlin | ||
|
||
CONFIG_TITLE=HOFFNUNG 3000 | ||
CONFIG_DESCRIPTION=HOFFNUNG 3000 is a festival for music, art and theory. It is an experiment in social, artistic and theoretical collaboration. | ||
|
||
CONFIG_MAXMIMUM_PARTICIPATION_COUNT=30 | ||
CONFIG_FESTIVAL_TICKET_PRICE=10 | ||
CONFIG_PARTICIPATION_PRICE=25 | ||
|
||
CONFIG_MAIL_ADMIN=HOFFNUNG 3000 <kontakt@yourmail.com> | ||
CONFIG_MAIL_ROBOT=ROBOTER 3000 <roboter@yourmail.com> | ||
|
||
CONFIG_CURRENCY=EUR | ||
|
||
CONFIG_TRANSFER_NAME= | ||
CONFIG_TRANSFER_BANK= | ||
CONFIG_TRANSFER_IBAN= | ||
CONFIG_TRANSFER_BIC= | ||
|
||
CONFIG_FESTIVAL_DATE_START=2017-08-24T00:00:00.000+02:00 | ||
CONFIG_FESTIVAL_DATE_START=2017-08-27T00:00:00.000+02:00 | ||
|
||
CONFIG_DEFAULT_CITY= | ||
CONFIG_DEFAULT_COUNTRY= | ||
CONFIG_DEFAULT_LATITUDE= | ||
CONFIG_DEFAULT_LONGITUDE= | ||
|
||
# development server | ||
# Development server | ||
PORT=3000 | ||
|
||
# database | ||
# Database | ||
DATABASE_URL=postgres://username:password@localhost:5432/dbname | ||
DATABASE_DIALECT=postgres | ||
|
||
# authentification | ||
JWT_SECRET=secret | ||
|
||
# paypal | ||
PAYPAL_ID= | ||
PAYPAL_SECRET= | ||
PAYPAL_RETURN_URL=http://localhost:3000/api/auth/signup/paypal/success | ||
PAYPAL_CANCEL_URL=http://localhost:3000/api/auth/signup/paypal/cancel | ||
# Authentification | ||
JWT_SECRET= | ||
|
||
# smtp mail | ||
# SMTP mailing | ||
SMTP_HOST= | ||
SMTP_PORT= | ||
SMTP_USER= | ||
SMTP_PASS= | ||
|
||
# aws s3 | ||
# AWS S3 storage (optional) | ||
AWS_REGION= | ||
AWS_ACCESS_KEY_ID= | ||
AWS_SECRET_ACCESS_KEY= | ||
AWS_BUCKET_NAME= | ||
|
||
# google map api | ||
GOOGLE_MAP_API_KEY= | ||
|
||
# gif stream server | ||
GIF_STREAM_SERVER= | ||
# Paypal payment (optional) | ||
PAYPAL_ID= | ||
PAYPAL_SECRET= | ||
PAYPAL_RETURN_URL=http://localhost:3000/api/auth/signup/paypal/success | ||
PAYPAL_CANCEL_URL=http://localhost:3000/api/auth/signup/paypal/cancel |
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 |
---|---|---|
|
@@ -3,8 +3,7 @@ node_modules | |
|
||
# local | ||
.env | ||
public | ||
|
||
# development | ||
.tmp | ||
npm-debug.log | ||
dist | ||
static | ||
uploads | ||
webpack-assets.json |
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,5 @@ | ||
{ | ||
"plugins": { | ||
"autoprefixer": {} | ||
} | ||
} |
Oops, something went wrong.