Add readme
This commit is contained in:
parent
3711761671
commit
88b7806d57
3
.dockerignore
Normal file
3
.dockerignore
Normal file
@ -0,0 +1,3 @@
|
||||
/node_modules/
|
||||
/build/
|
||||
/.build/
|
14
Dockerfile
Normal file
14
Dockerfile
Normal file
@ -0,0 +1,14 @@
|
||||
FROM node:15.4.0 as build
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN yarn install
|
||||
RUN yarn build
|
||||
|
||||
FROM nginx:mainline-alpine
|
||||
|
||||
COPY --from=build /app/public /var/www
|
||||
COPY --from=build /app/build /var/www
|
||||
COPY ./config/nginx.conf.template /etc/nginx/templates/default.conf.template
|
76
README.md
76
README.md
@ -1,44 +1,44 @@
|
||||
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
|
||||
# System Praktyk - Frontend
|
||||
|
||||
## Available Scripts
|
||||
Projekt oparty o [Create React App](https://create-react-app.dev/) z wyciągniętymi najważniejszymi rzeczami w celu
|
||||
minimalizacji zależności.
|
||||
|
||||
In the project directory, you can run:
|
||||
## Skrypty
|
||||
```bash
|
||||
$ yarn server # uruchomienie serwera
|
||||
$ yarn watch # uruchomienie budowania assetów
|
||||
$ yarn build # uruchomienie produkcyjnego builda
|
||||
```
|
||||
|
||||
### `yarn start`
|
||||
## Struktura projektu
|
||||
```
|
||||
/.build - skrypty budujace aplikacje na serwerze
|
||||
/config - konfiguracja
|
||||
/public - pliki publiczne
|
||||
/translations - tłumaczenia
|
||||
/src/api - moduły związane z interfejsowaniem z api
|
||||
/src/data - modele danych
|
||||
/src/forms - formularze i pochodne
|
||||
/src/components - wspólne komponenty
|
||||
/src/hooks - customowe hooki dla reacta
|
||||
/src/pages - podstrony
|
||||
/src/provider - przykładowe dane
|
||||
/src/serialization - serializacja modeli
|
||||
/src/state - zarządzanie stanem
|
||||
/src/management - moduły administracji kursami, struktura analogiczna
|
||||
/src/styles,ui - style
|
||||
/src/utils - pomocne funkcje
|
||||
```
|
||||
|
||||
Runs the app in the development mode.<br />
|
||||
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
|
||||
## Docker
|
||||
Obraz bazuje na nginxie z linii mainline. Budowanie obrazu:
|
||||
```
|
||||
docker build -f Dockerfile -t system-praktyk-front:latest .
|
||||
```
|
||||
|
||||
The page will reload if you make edits.<br />
|
||||
You will also see any lint errors in the console.
|
||||
Dostępne są wszystkie zmienne środowiskowe typowe dla nginxa oraz dodatkowo `APP_API_BASE` definiującą bazowy adres pod którym dostępne jest api.
|
||||
|
||||
### `yarn test`
|
||||
|
||||
Launches the test runner in the interactive watch mode.<br />
|
||||
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
|
||||
|
||||
### `yarn build`
|
||||
|
||||
Builds the app for production to the `build` folder.<br />
|
||||
It correctly bundles React in production mode and optimizes the build for the best performance.
|
||||
|
||||
The build is minified and the filenames include the hashes.<br />
|
||||
Your app is ready to be deployed!
|
||||
|
||||
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
|
||||
|
||||
### `yarn eject`
|
||||
|
||||
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
|
||||
|
||||
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
|
||||
|
||||
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
|
||||
|
||||
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
|
||||
|
||||
## Learn More
|
||||
|
||||
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
|
||||
|
||||
To learn React, check out the [React documentation](https://reactjs.org/).
|
||||
Przykład uruchomienia:
|
||||
```
|
||||
docker run -e APP_API_BASE="https://system-praktyk.stg.kadet.net" -p 80:80 system-praktyk-front
|
||||
```
|
||||
|
18
config/nginx.conf.template
Normal file
18
config/nginx.conf.template
Normal file
@ -0,0 +1,18 @@
|
||||
server {
|
||||
server_name $NGINX_HOST;
|
||||
root /var/www;
|
||||
|
||||
location ~ ^/api/doc$ {
|
||||
try_files $uri /index.html;
|
||||
}
|
||||
|
||||
location /api/ {
|
||||
proxy_pass $APP_API_BASE/api/;
|
||||
proxy_intercept_errors on;
|
||||
add_header Access-Control-Allow-Origin *;
|
||||
}
|
||||
|
||||
location / {
|
||||
try_files $uri /index.html;
|
||||
}
|
||||
}
|
@ -14,7 +14,7 @@ import * as upload from "./upload";
|
||||
import * as report from "./report";
|
||||
|
||||
export const axios = Axios.create({
|
||||
baseURL: process.env.API_BASE_URL || `https://${window.location.hostname}/api/`,
|
||||
baseURL: process.env.API_BASE_URL || `${window.location.protocol}//${window.location.hostname}/api/`,
|
||||
})
|
||||
|
||||
axios.interceptors.request.use(config => {
|
||||
|
@ -3,7 +3,7 @@ import { useTranslation } from "react-i18next";
|
||||
import { useSpacing } from "@/styles";
|
||||
import { Field, Form, Formik } from "formik";
|
||||
import { Button, Dialog, DialogActions, DialogContent, DialogProps, DialogTitle, Typography } from "@material-ui/core";
|
||||
import { CKEditorField } from "@/field/ckeditor";
|
||||
import { CKEditorField } from "@/forms/ckeditor";
|
||||
import { Actions } from "@/components/actions";
|
||||
import { Cancel, Send } from "mdi-material-ui";
|
||||
import { createPortal } from "react-dom";
|
||||
|
@ -6,7 +6,7 @@ import { TextField as TextFieldFormik } from "formik-material-ui";
|
||||
import { Typography } from "@material-ui/core";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import { useSpacing } from "@/styles";
|
||||
import { CKEditorField } from "@/field/ckeditor";
|
||||
import { CKEditorField } from "@/forms/ckeditor";
|
||||
|
||||
export type StaticPageFormValues = StaticPage;
|
||||
|
||||
|
@ -6,7 +6,7 @@ import { useSpacing } from "@/styles";
|
||||
import { Field, FieldArray, FieldProps, useFormikContext } from "formik";
|
||||
import { TextField as TextFieldFormik, Select } from "formik-material-ui";
|
||||
import { FormControl, InputLabel, Typography, MenuItem, Card, Box, Button, CardContent, CardHeader, IconButton } from "@material-ui/core";
|
||||
import { CKEditorField } from "@/field/ckeditor";
|
||||
import { CKEditorField } from "@/forms/ckeditor";
|
||||
import { Multilingual } from "@/data";
|
||||
import { Actions } from "@/components";
|
||||
import { Add } from "@material-ui/icons";
|
||||
|
@ -5,7 +5,7 @@ import { useSpacing } from "@/styles";
|
||||
import { Field } from "formik";
|
||||
import { TextField as TextFieldFormik, Checkbox as CheckboxFormik } from "formik-material-ui";
|
||||
import { FormControlLabel, FormGroup, Typography } from "@material-ui/core";
|
||||
import { CKEditorField } from "@/field/ckeditor";
|
||||
import { CKEditorField } from "@/forms/ckeditor";
|
||||
import { AccountCheck, ShieldCheck } from "mdi-material-ui";
|
||||
import { identityTransformer, Transformer } from "@/serialization";
|
||||
import { LabelWithIcon } from "@/management/common/LabelWithIcon";
|
||||
|
Loading…
Reference in New Issue
Block a user