
This reverts commit 6c283862daa0c8846a544c183e72623b65907cc3. chore: Add all undeclared packages to package.json Add all undeclared packages to package.json (Round 2) Signed-off-by: Sora Morimoto <sora@morimoto.io> chore: move core deps to peer codemirror5 Signed-off-by: Sora Morimoto <sora@morimoto.io> Add all undeclared packages to `package.json` (Round 2) Signed-off-by: Sora Morimoto <sora@morimoto.io> _ Signed-off-by: Sora Morimoto <sora@morimoto.io> Add all undeclared "safe" packages to `package.json` Signed-off-by: Sora Morimoto <sora@morimoto.io> Add all undeclared "unsafe" packages to `package.json` Signed-off-by: Sora Morimoto <sora@morimoto.io> helper-plugin: remove `fs-extra` Signed-off-by: Sora Morimoto <sora@morimoto.io> https://github.com/strapi/strapi/pull/15797 i18n-plugin: move redux from devDependencies to dependencies Signed-off-by: Sora Morimoto <sora@morimoto.io> database: sqlite3 was a false-detected dependency Signed-off-by: Sora Morimoto <sora@morimoto.io> generators: revert changes Signed-off-by: Sora Morimoto <sora@morimoto.io> Regenerate yarn.lock Signed-off-by: Sora Morimoto <sora@morimoto.io> chore: update react-intl chore: fix post rebase chore: remove axios from packages that dont need it chore: ensure projects install r rd rrd & s Revert "chore: ensure projects install r rd rrd & s" This reverts commit 2e87a1d0fcaf21e187ce558f4690d41ff854d58d. Revert "Revert "chore: ensure projects install r rd rrd & s"" This reverts commit b53a3d49987b00abb393966738d2a34f59c9dc71. chore: Add all undeclared packages to package.json
getstarted
This is an example app you can run to test your changes quickly.
Requirements
- Docker
- Docker compose
- Node
Installation
By default once you have setup the monorepo you will be able to run the getstarted app with a sqlite DB directly.
If you wish to run the getstarted app with another database you can use the docker-compose.dev.yml
file at the root of the directory.
start the databases
Run the following command at the root of the monorepo
docker-compose -f docker-compose.dev.yml up -d
If you need to stop the running databases you can stop them with the following command:
docker-compose -f docker-compose.dev.yml stop
run the getstarted app with a specific database
DB={dbName} yarn develop
The way it works is that the getstarted
app has a specific database.js
config file that will use the DB
environment variable to setup the right database connection. You can look at the code here
Warning
You might have some errors while connecting to the databases.
They might be coming from a conflict between a locally running database instance and the docker instance. To avoid the errors either shutdown your local database instance or change the ports in the ./config/database.js
and the docker-compose.dev.yml
file.