.env
file in the root..env.sample
, paste it to .env
file and update necessary variables. If you are using kafka copy everything from .env.sample.kafka
, paste it to .env
file and update necessary fields.
IMPORTANT: Read the comments carefully before updating or adding any variables
cluster-whitelist.js
and add cluster details. Use cluster-whitelist.sample.js
as a template.npm run bootstrap-server
.
This will install dependencies, create schema, migrate tables, seed initial data and start the server..env
file, copy-paste everything from .env.sample amd update necessary variablesnpm run bootstrap-client
. This will install all the dependencies and start client.nodemon server
and npm start
from /server and /client directory respectively.env
file in the root..env.sample
, paste it to .env
file and update necessary variables. If you are using kafka copy everything from .env.sample.kafka
, paste it to .env
file and update necessary fields..env.sample.kafka
, append it to .env
file and update necessary fields.
IMPORTANT: Read the comments carefully before updating or adding any variables
nginx.conf.template
inside /client-reactjs/nginx/conf.d
directorynginx.conf.template-ssl
and paste it to nginx.conf.template
.
If you are not using SSL copy the content from nginx.conf.template-no-ssl
and paste it to nginx.conf.template
.cluster-whitelist.js
and add cluster details. Use cluster-whitelist.sample.js
as a template..env
file, copy-paste everything from .env.sample and update necessary variablesdocker-compose.yml
docker-compose-without-kafka
, paste to docker-compose.yml
and run docker-compose up -d
.docker-compose-with-kafka
, paste to docker-compose.yml
run docker-compose up -d
.http://<host_hostname>:<host_port>
Click here to view complete documentation.
Tombolo supports Internationalization. For instructions to spin this app in different language, view Internationalization instructions below. Internationalization Instruction
Example : import hi_IN from 'antd/es/locale/hi_IN';
click here for list of supported languages and corresponding file names.
Example :
{ label: 'हिन्दी', value: 'in', },
Example create in.json
Example
locale = (lang) => { switch (lang) { case 'in': return hi_IN; default: return en_US; } };