├── .gitignore ├── README.md ├── backend ├── .DS_Store ├── .dockerignore ├── Dockerfile ├── main.py └── requirements.txt ├── docker-compose.yml ├── frontend ├── .eslintrc.cjs ├── .gitignore ├── Dockerfile ├── index.html ├── nginx.conf ├── package-lock.json ├── package.json ├── src │ ├── App.css │ ├── App.jsx │ ├── index.css │ └── main.jsx └── vite.config.js ├── nginx.conf └── nginx_subdomain.conf /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/README.md -------------------------------------------------------------------------------- /backend/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/backend/.DS_Store -------------------------------------------------------------------------------- /backend/.dockerignore: -------------------------------------------------------------------------------- 1 | venv/ -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi 2 | uvicorn -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/frontend/nginx.conf -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/frontend/src/App.jsx -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/frontend/src/main.jsx -------------------------------------------------------------------------------- /frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/frontend/vite.config.js -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/nginx.conf -------------------------------------------------------------------------------- /nginx_subdomain.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/deploy-frontend-backend/HEAD/nginx_subdomain.conf --------------------------------------------------------------------------------