Run yarn install
and yarn dev
in this directory to launch the react project in your browser
To run on windows, use docker.
- Set VITE_DOCKER to true in .env
- Run
docker compose up -d
- Navigate to http://localhost:8000/
Note: If you change your environment variables in .env, you will have to rebuild the container to see the changes using the docker compose up --build -d
command.
To see the logs directly in your console, you can remove the -d flag. Otherwise, you can view output in Docker Desktop.
Pull key:value from google sheets to create json file.
https://docs.google.com/spreadsheets/d/1Kk8OIOhXxzyMA3ZgyiIiQtdwJNBJvGaUTNsarYHcFsM/
IMPORTANT Please create a new google sheet for each new project. Do not use this one for one of your projects
Run yarn sheet2i18n
to update your local keys with what is in the spreadsheet.
.
├── ...
├── public # Public root
├── src
│ ├── app # Typescript app + sass files
│ │ ├── components
│ │ ├── containers
│ │ ├── enums
│ │ ├── forms
│ │ ├── hocs
│ │ ├── icons
│ │ ├── pages
│ │ ├── routes
│ │ ├── services
│ │ ├── shared
│ │ ├── stores
│ ├── assets # Static assets
│ │ ├── fonts
│ │ ├── images
│ │ ├── locales
│ └── styles # Global Sass files.
│ │ ├── mixins
│ │ ├── vendors
├── example.env
├── .env
└── ...