This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
If you don't have vs code, search for commands in ./project.code-workspace
- Install docker, docker-compose, buildx
- Install node.js 16 with nvm. NVM GitHub
- Install yarn with
npm i -g yarn
- Call task in VS code:
Create new docker builder
(call only once when pulling project) - Call task in VS code:
Use docker builder
(call only once when pulling project) - Call task in VS code:
Install yarn dependencies
(call only once when pulling project)
If you plan to develop and use own fs
- Call task in VS code for better typing support:
Mount types/shared in native fs
. - Call task in VS code:
Up dev
If you want to develop inside a container
- Call command in VS code:
Dev containers: Reopen in container
- Call task in VS code:
psql dev
http://localhost/api/mock/execute?mockScriptName=mockUserAndAdminAccessScope
-
If you want to check that all containers are up :
docker-compose ps
-
Other Docker commands :
# Start Docker docker-compose start # Restart Docker docker-compose restart # Stop Docker docker-compose stop # Delete all containers docker rm $(docker ps -aq) # Delete all images docker rmi $(docker images -q)
-
How to get a Docker container's IP address from the host ?
docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' <container> docker inspect $(docker ps -f name=<service> -q) | grep IPAddress
- password recovery|reset
- connect testing libraries
- Move yarn dependencies one level higher
- Merge typescript, prettier and eslint configs and place it in project root directory
- write script for getting sql from all migrations into one .sql file which then will be fed to dbml documentation generator
- add healthcheck
- wrap mock into transaction
- add removing expired tokens from whitelisted store
- update customFetch in frontend to use latest version made in tda project
- cache requests to db for user with joined all access scopes (don't forget to invalidate cache when updating user or access scopes)
- move some logic of redis commands from js to lua right into redis itself