docs(readme): add instructions to deploy via docker compose and via deta.space

This commit is contained in:
Kentai Radiquum 2024-05-15 00:02:29 +05:00
parent 59a61d3e7a
commit f2f83ad084
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
7 changed files with 239 additions and 5 deletions

56
.dockerignore Normal file
View file

@ -0,0 +1,56 @@
# Python
__pycache__
venv
.mypy_cache
# VSCode
.VSCode
*.code-workspace
# NextJS
## dependencies
node_modules
.pnp
.pnp.js
.yarn/install-state.gz
## testing
coverage
## next.js
.next
out
## production
build
## misc
.DS_Store
*.pem
## debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
## local env files
.env*.local
## vercel
.vercel
## typescript
*.tsbuildinfo
next-env.d.ts
# traefik
traefik
# OtherFiles
CHANGELOG.md
LICENSE
README.md
TODO.md
.cz.yaml
.pre-commit-config.yaml
docs