1.0.2 • Published 4 years ago
adonis-ally-figma v1.0.2
Adonis Ally Figma Driver
A Figma driver for AdonisJS Ally
Getting started
1. Install the package
Install the package from your command line.
npm install --save adonis-ally-figmaor
yarn add adonis-ally-figma2. Configure the package
node ace configure adonis-ally-figma3. Validate environment variables
FIGMA_CLIENT_ID: Env.schema.string(),
FIGMA_CLIENT_SECRET: Env.schema.string(),4. Add variables to your ally configuration
const allyConfig: AllyConfig = {
// ... other drivers
figma: {
driver: 'figma',
clientId: Env.get('FIGMA_CLIENT_ID'),
clientSecret: Env.get('FIGMA_CLIENT_SECRET'),
callbackUrl: 'http://localhost:3333/figma/callback',
},
}How it works
You can learn more about AdonisJS Ally in the documentation. And learn about the implementation in the ally-driver-boilerplate repository.
Contributing
- Fork the repo
- Create your feature branch:
git checkout -b my-new-feature - Commit your changes:
git commit -am 'feat: Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request :D