Front and backend using Svelte, Express, and MySql
Create svelte/src/config.json
{
"api": "backend url and port"
}Terminal
cd svelte
npm install
npm run devCreate express/config.json
{
"sql": {
"host": "",
"user": "",
"password": "",
"database": ""
},
"port": ""
}Terminal
cd express
npm install
npm run dev