Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/siddeshwarnavink/quick-notes-app
A simple notes taking application build using React, PHP, and GraphQL
https://github.com/siddeshwarnavink/quick-notes-app
Last synced: about 4 hours ago
JSON representation
A simple notes taking application build using React, PHP, and GraphQL
- Host: GitHub
- URL: https://github.com/siddeshwarnavink/quick-notes-app
- Owner: siddeshwarnavink
- Created: 2021-01-26T23:24:18.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-03T00:33:36.000Z (almost 4 years ago)
- Last Synced: 2023-03-10T04:16:44.345Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://quick-notes-app.siddeshrocks.in/
- Size: 447 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# quick-notes-app
A simple notes takeing application build using React, PHP, and GraphQL# Getting started
In order for this application to work, you need the following installed on your computer.- php 5.6
- mysql
- ComposerFirst you need to clone this repo
```
git clone
```
Then you need to install all the required dependencies using composer. If composer is installed globally in you're computer, then run```
composer install
```Then you need to install all the dependencies for the frontend react app
```
cd frontend
yarn install
```After that, you need to create a database in you're SQL server and execute the query given in the ```database.sql```
Then go to ```containers/Capsule.php``` and then create ```.env``` file and update your database credentials
> **Tip:** See the ```.env.example``` file to get an idea on how to enter the database credentials
Now the app is successfully set up in your computer to start the server, run
```sh
bash serve.sh # For Linux and Macserve.bat # For Windows
```And the start the frontend app by running
```
cd frontendyarn start
```Now, the app runs in ```http://localhost:3000/``` by default.