Click on image to view fullscreen and zoom
code
โโโ package.json
โ
โโโ api (api.example.com)
โ โโโ public
โ โโโ src
โ โ โโโ config
โ โ โโโ migrations
โ โ โโโ modules
โ โ โโโ seeders
โ โ โโโ setup
โ โ โโโ index.js
โ โ
โ โโโ package.json
โ
โโโ mobile (Android, iOS)
โ โโโ assets
โ โโโ src
โ โ โโโ modules
โ โ โโโ setup
โ โ โโโ ui
โ โ โโโ index.js
โ โ
โ โโโ package.json
โ
โโโ web (example.com)
โ โโโ public
โ โโโ src
โ โ โโโ modules
โ โ โโโ setup
โ โ โโโ ui
โ โ โโโ index.js
โ โโโ storybook
โ โ
โ โโโ package.json
โ
โโโ .gitignore
โโโ README.md
git clone [email protected]:atulmy/crate.git crate
code
directory cd code
/api/src/config/database.json
for database credentials/api/.env
for PORT (optional)/web/.env
for PORT / API URL (optional)/mobile/src/setup/config.json
for API URL (tip: use ifconfig
to get your local IP address)cd api
and npm run setup
cd web
and npm install
cd mobile
and npm install
cd mobile/ios
pod install
cd api
and npm start
, browse GraphiQL at http://localhost:8000/
cd web
and npm start
, browse webapp at http://localhost:3000/
cd mobile
and npx react-native run-ios
for iOS and npx react-native run-android
for Androidcd api
and npm run start:prod
, creates an optimized build in build
directory and runs the servercd web
and npm run start:prod
, creates an optimized build in build
directory and runs the servercode
directory cd code
npm run setup
npm start
, browse GraphiQL at http://localhost:8000/ and Webapp at http://localhost:8000/
npm start:api
, browse GraphiQL at http://localhost:8000/
npm start:web
, browse webapp at http://localhost:3000/
If you liked this project, you can donate to support it โค๏ธ
Looking for a developer to build your next idea or need a developer to work remotely? Get in touch: [email protected]
Copyright (c) 2018 Atul Yadav http://github.com/atulmy
The MIT License (http://www.opensource.org/licenses/mit-license.php)