An advanced editor for the Steem posts, not only for advanced users!
git clone https://github.com/jakipatryk/steeditor.git
cd steeditor
npm install
npm install -g @angular/cli
// DEV
export const environment = {
production: false,
steemConnectConfig: {
clientId: 'testing-env.app',
scope: ['comment', 'comment_options']
}
};
// PROD
export const environment = {
production: true,
steemConnectConfig: {
clientId: 'steeditor.app',
scope: ['comment', 'comment_options']
}
};
If you decide to use testing-env.app
for development environment, the redirect URL in SteemConnect is already set up. Otherwise, make sure that your SteemConnect app has correct redirect URLs set up:
- DEV:
http://localhost:4200/__/steemconnect/redirect
- PROD:
https://<YOUR-DOMAIN>/__/steemconnect/redirect
npm start
npm run build
npm run test
npm run lint
- prefer declarative and functional code and use
ramda
to achieve this - components should NOT be aware of external data
- containers should be aware of external data (selected from Store)
- containers should dispatch actions
- containers should pass data to components using Observables + async pipe