Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anupamkhosla/musicgitbeanstalk
Music sheets if indian ragas
https://github.com/anupamkhosla/musicgitbeanstalk
indian-classical-music music music-sheet
Last synced: about 9 hours ago
JSON representation
Music sheets if indian ragas
- Host: GitHub
- URL: https://github.com/anupamkhosla/musicgitbeanstalk
- Owner: AnupamKhosla
- Created: 2023-07-11T20:49:30.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-12T10:55:33.000Z (11 months ago)
- Last Synced: 2023-12-12T11:38:20.455Z (11 months ago)
- Topics: indian-classical-music, music, music-sheet
- Language: HTML
- Homepage: http://musicsheets.in
- Size: 8.43 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About
This website/project intends to collect all Indian ragas music sheet in one place like a wiki. The website/project is currently in development phase.
## Commands
```
kill port on linux: kill -9 $(lsof -t -i:8080)
test app: npm test
start development work: npm run start_dev
start prod env: npm start
```Use only `localhost:3000` for development work. `localhost:5050` for production testing. `npm test` will create the build folder and run the tests.
Welcome to the musicsheets.in project
==================================================This project builds upon https://github.com/mongodb-developer/mongodb-express-rest-api-example it is currenlty hosted on amazon web services beanstalk environment. The current code is compatibe with aws linux 2.
A few things have changed with newer node and mongodb versions, so this project imporoves upon the former MERN git repo.
--------------------------------
This sample code helps get you started with a simple Express web application
deployed by AWS Elastic Beanstalk and AWS CloudFormation.What's Here
-----------This sample includes:
* README.md - this file
* .ebextensions/ - this directory contains the configuration files that
AWS Elastic Beanstalk will deploy your Express application
* buildspec.yml - this file is used by AWS CodeBuild to package your project.
* package.json - this file contains various metadata relevant to your Node.js
application such as dependencies
* server.js - this file contains the code for your application
* public/ - this directory contains static web assets used by your application
* tests/ - this directory contains unit tests for your application
* template.yml - this file contains the description of AWS resources used by AWS
CloudFormation to deploy your infrastructure
* template-configuration.json - this file contains the project ARN with placeholders used for tagging resources with the project IDGetting Started
---------------These directions assume you want to develop on your local computer, and not
from the Amazon EC2 instance itself. If you're on the Amazon EC2 instance, the
virtual environment is already set up for you, and you can start working on the
code.To work on the sample code, you'll need to clone your project's repository to your
local computer. If you haven't, do that first. You can find instructions in the AWS CodeStar user guide at https://docs.aws.amazon.com/codestar/latest/userguide/getting-started.html#clone-repo.1. Install Node.js on your computer. For details on available installers visit
https://nodejs.org/en/download/.2. Install NPM dependencies:
$ npm install
3. Start the development server:
$ node server.js
4. Open http://127.0.0.1:3000/ in a web browser to view your application.
What Do I Do Next?
------------------Once you have a virtual environment running, you can start making changes to
the sample Express web application. We suggest making a small change to
/public/index.html first, so you can see how changes pushed to your project's
repository are automatically picked up and deployed to the Amazon EC2 instance
by AWS Elastic Beanstalk. (You can watch the progress on your project dashboard.)
Once you've seen how that works, start developing your own code, and have fun!To run your tests locally, go to the root directory of the
sample code and run the `npm test` command, which
AWS CodeBuild also runs through your `buildspec.yml` file.To test your new code during the release process, modify the existing tests or
add tests to the tests directory. AWS CodeBuild will run the tests during the
build stage of your project pipeline. You can find the test results
in the AWS CodeBuild console.Learn more about AWS CodeBuild and how it builds and tests your application here:
https://docs.aws.amazon.com/codebuild/latest/userguide/concepts.htmlLearn more about AWS CodeStar by reading the user guide. Ask questions or make
suggestions on our forum.User Guide: https://docs.aws.amazon.com/codestar/latest/userguide/welcome.html
Forum: https://forums.aws.amazon.com/forum.jspa?forumID=248
How Do I Add Template Resources to My Project?
------------------To add AWS resources to your project, you'll need to edit the `template.yml`
file in your project's repository. You may also need to modify permissions for
your project's worker roles. After you push the template change, AWS CodeStar
and AWS CloudFormation provision the resources for you.See the AWS CodeStar user guide for instructions to modify your template:
https://docs.aws.amazon.com/codestar/latest/userguide/how-to-change-project.html#customize-project-templateWhat Should I Do Before Running My Project in Production?
------------------AWS recommends you review the security best practices recommended by the framework
author of your selected sample application before running it in production. You
should also regularly review and apply any available patches or associated security
advisories for dependencies used within your application.Best Practices: https://docs.aws.amazon.com/codestar/latest/userguide/best-practices.html?icmpid=docs_acs_rm_sec