Skip to content

Commit

Permalink
Root files
Browse files Browse the repository at this point in the history
  • Loading branch information
ineshbose committed Jan 11, 2022
1 parent 40dbbd2 commit 25d8c44
Show file tree
Hide file tree
Showing 9 changed files with 9,085 additions and 250 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Expand Up @@ -14,4 +14,8 @@ tmp

# IDEs
.vscode
.idea
.idea

# Dependencies
env
node_modules
15 changes: 15 additions & 0 deletions package.json
@@ -0,0 +1,15 @@
{
"name": "portion-mate",
"version": "1.0.0",
"main": "src/index.js",
"private": true,
"workspaces": ["src"],
"scripts": {
"start": "expo start src",
"android": "expo start src --android",
"ios": "expo start src --ios",
"web": "expo start src --web",
"eject": "expo eject src",
"test": "echo \"Error: no test specified\" && exit 1"
}
}
7 changes: 7 additions & 0 deletions run.py
@@ -0,0 +1,7 @@
import sys
from src.manage import main


if __name__ == "__main__":
sys.path.append("src/server")
main()
2 changes: 1 addition & 1 deletion src/.eslintrc.js
Expand Up @@ -21,7 +21,7 @@ module.exports = {
'prettier',
'plugin:prettier/recommended',
],
ignorePatterns: ['backend'],
ignorePatterns: ['backend', 'env'],
rules: {
'import/namespace': 'off',
'no-use-before-define': 'off',
Expand Down

0 comments on commit 25d8c44

Please sign in to comment.