Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
saiforceone committed Apr 8, 2023
2 parents 409b2aa + e008810 commit 875f983
Show file tree
Hide file tree
Showing 42 changed files with 3,304 additions and 696 deletions.
25 changes: 25 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"env": {
"browser": false,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"templates", "dist"
],
"overrides": [
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
}
}
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,16 @@ pipenv shell

# run the project
npm run dirt-dev

# open the web app in browser: http://localhost:8000
```

If you opted to use the StoryBook option, you may run it from the project directory using
```shell
npm run storybook
```

### Known issues

#### Hidden Django dev server output:
Currently, some Django dev server output is hidden when using `npm run dirt-dev`. The workaround is to run Django normally in it's own terminal (pipenv shell must be activated) and then the frontend in another terminal using `npm run dirt-fe`
2 changes: 1 addition & 1 deletion bin/create-dirt-stack.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env node

const { cli } = await import('../src/cli.js');
const { cli } = await import('../dist/cli.js');
cli().then();
File renamed without changes.
5 changes: 5 additions & 0 deletions configs/prettierDependencies.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"packages": {
"prettier": "^2.8.7"
}
}
File renamed without changes.
Loading

0 comments on commit 875f983

Please sign in to comment.