Skip to content

Commit f28afe9

Browse files
authored
Prepare for release (#3)
* 🐳 chore: Fix development environment. * 📃 docs: Update main read.me.
1 parent 8d866d0 commit f28afe9

File tree

15 files changed

+181
-56681
lines changed

15 files changed

+181
-56681
lines changed

README.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,40 @@ Please refer to [Localazy Directus Extension](extensions/module/README.md) and [
99
> Check that your [Docker](https://www.docker.com/products/docker-desktop/) engine is running
1010
- Run `npm run dev`
1111
- This will start the dockerized environment and will automatically synchronize any changes you make to the Directus' extensions folder
12-
- In order to propagate the changes, the docker container is always restarted. Depending on the power your computing power, this could take a second or two.
12+
- In order to propagate the changes, the docker container is always restarted. Depending on your computing power, this could take a second or two.
1313
- Open `http://localhost:8055/admin`
1414
- user: admin@example.com
1515
- pwd: d1r3ctu5
1616

17+
## 📚 Documentation
18+
19+
- [Localazy Directus Plugin](https://localazy.com/docs/directus/directus-plugin-introduction-installation)
20+
- [Getting Started With Localazy](https://localazy.com/docs/general/getting-started-with-localazy)
21+
- [Changelog](CHANGELOG.md)
22+
23+
1724
### Useful links
25+
1826
- [Directus Components Overview](https://components.directus.io/)
27+
- [Directus Content Translation Guide](https://docs.directus.io/guides/headless-cms/content-translations.html)
28+
29+
## 🛟 Support
30+
31+
Join the [Localazy Discussion Forum](https://discuss.localazy.com/) to discuss anything localization related.
32+
33+
If you encounter any problems or have questions, you can use our forum or contact us at
34+
team@localazy.com.
35+
36+
## ❤️ Localazy Ecosystem
37+
38+
Check out other npm packages from Localazy:
39+
40+
| NPM package | Description |
41+
|:--------------------------------------------------------------------------------------|----------------------------------------------|
42+
| [@localazy/cli](https://www.npmjs.com/package/@localazy/cli) | Localazy CLI tool. |
43+
| [@localazy/api-client](https://www.npmjs.com/package/@localazy/api-client) | Localazy API client. |
44+
| [@localazy/languages](https://www.npmjs.com/package/@localazy/languages) | List of all languages supported by Localazy. |
45+
[@localazy/strapi-plugin](https://www.npmjs.com/package/@localazy/strapi-plugin) | The official Localazy Strapi plugin. |
46+
47+
Discover all available [integration options and localization examples](https://github.com/localazy).
1948

development/docker-compose.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,10 @@ services:
3030
# Always make sure your volumes matches the storage root when using
3131
# local driver
3232
- ./uploads:/directus/uploads
33-
# - ./modules:/directus/extensions/modules
34-
- ./extensions/directus-extension-localazy:/directus/extensions/directus-extension-localazy
3533
# Make sure to also mount the volume when using SQLite
3634
# - ./database:/directus/database
3735
# If you want to load extensions from the host
38-
# - ./extensions:/directus/extensions
36+
- ./extensions:/directus/extensions
3937
networks:
4038
- directus
4139
depends_on:
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"name": "@localazy/directus-extension-localazy-automation",
3+
"description": "The official Localazy hook extension for Directus to automate synchronization of content",
4+
"icon": "cloud_sync",
5+
"version": "1.0.1",
6+
"keywords": [
7+
"directus",
8+
"directus-extension",
9+
"directus-extension-hook",
10+
"localazy"
11+
],
12+
"type": "module",
13+
"files": [
14+
"dist"
15+
],
16+
"directus:extension": {
17+
"type": "hook",
18+
"path": "dist/index.js",
19+
"source": "src/index.ts",
20+
"host": "^10.10.0"
21+
},
22+
"scripts": {
23+
"build": "directus-extension build",
24+
"lint": "eslint --ext .ts,.vue src"
25+
},
26+
"dependencies": {
27+
"@localazy/api-client": "^2.1.5",
28+
"lodash": "^4.17.21"
29+
},
30+
"devDependencies": {
31+
"@directus/extensions-sdk": "^11.0.4",
32+
"@types/lodash": "^4.17.1",
33+
"@types/node": "^20.12.11",
34+
"typescript": "^5.4.5"
35+
}
36+
}

0 commit comments

Comments
 (0)