-
Notifications
You must be signed in to change notification settings - Fork 3
MapSwipe Revamp #76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MapSwipe Revamp #76
Conversation
a9a281f to
3b0c565
Compare
| ENV VITE_BASE_URL=https://mapswipe.org/privacy | ||
| ENV VITE_PRIVACY_POLICY_URL=https://mapswipe.org/privacy/ | ||
| ENV VITE_IMPRINT_URL=https://mapswipe.org/privacy/ | ||
| ENV VITE_APP_LOGO=./img/mapswipe-white.svg | ||
| ENV VITE_PROJECTS_FALLBACK_IMAGE=./img/map-pin-600x400.jpg | ||
| ENV VITE_ALLOW_UNVERIFIED_USERS=true | ||
|
|
||
| ENV VITE_DEFAULT_LOCALE=en | ||
| ENV VITE_FALLBACK_LOCALE=en | ||
| ENV VITE_SUPPORTED_LOCALES=en,de,fr | ||
|
|
||
| ENV VITE_THEME_LIGHT_PRIMARY=#060E2F | ||
| ENV VITE_THEME_LIGHT_SECONDARY=#0D1949 | ||
| ENV VITE_THEME_LIGHT_TERTIARY=#EEF2FB | ||
| ENV VITE_THEME_LIGHT_ACCENT=#589AE3 | ||
| ENV VITE_THEME_LIGHT_ERROR=#C62828 | ||
| ENV VITE_THEME_LIGHT_WARNING=#8E0000 | ||
| ENV VITE_THEME_LIGHT_INFO=#2196f3 | ||
| ENV VITE_THEME_LIGHT_SUCCESS=#4caf50 | ||
| ENV VITE_THEME_LIGHT_NEUTRAL=#272727 | ||
|
|
||
| ENV VITE_APP_NAME=MapSwipe | ||
| ENV VITE_APP_WEBSITE_URL=https://mapswipe.org | ||
| ENV VITE_APP_ATTRIBUTION_TITLE=MapSwipe | ||
| ENV VITE_APP_ATTRIBUTION_URL=https://mapswipe.org/privacy/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason for "hard-coding" the env variables in the Dockerfile instead of grabbing them from the .env file?
| @@ -0,0 +1,166 @@ | |||
| <script lang="ts" setup> | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just as a comment: Using Vue's "new" Composition API instead of the old Options API is probably a step into the right direction. It might however get a bit confusing to mix both in the same code base.
| component: 'findProject', | ||
| component: 'completenessProject', | ||
| }, | ||
| '5': { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the Validate Image project can replace the experimental Media project? As I understand, I could also create a project from images without labels and with custom options?
This PR include changes done during (but not limited to) the MapSwipe backend revamp.