-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: streamline npm commands in root
- Loading branch information
1 parent
f347dcd
commit a413e38
Showing
2 changed files
with
23 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"name": "rocketnotes", | ||
"version": "1.0.2", | ||
"description": "AI-powered markdown editor - leverage vector embeddings and LLMs with your personal notes - 100% local or in the cloud", | ||
"scripts": { | ||
"install": "cd webapp && npm install", | ||
"start-services": "docker-compose up dynamodb s3 -d", | ||
"init-db": "sh ./dynamodb-init.sh", | ||
"build-api": "sam build", | ||
"start-api": "sam local start-api --docker-network rocketnotes_local-serverless-network --warm-containers EAGER", | ||
"start-webapp": "cd webapp && npm run start" | ||
}, | ||
"license": "MIT" | ||
} |