Skip to content

userappstore/app-store-application-server

Repository files navigation

App Store Application Server

Launch your own subscription web app store and user platform for front-end and full-stack developers to create, share and earn. This application server is one half of the software, it is accompanied by a Dashboard server. This readme assumes you have configured the Dashboard server already.

About

The app store software provides a website where users may code and share single-page applications or import hosted web applications by their server URL. Users who complete a Stripe Connect registration may publish their apps with paid subscriptions.

Screenshots of the app store software (both servers)

Guest landing page
Guest landing page that you replace with your own / route on your application server
Signed in home page
Signed in home page with an empty app store
Example application
An example app with case study for it was made compatible

Installation part 1: Dashboard Server

Visit the App Store Dashboard Server if you have not completed that part.

Installation part 2: Application server

You must install NodeJS 8.12.0+ prior to these steps.

$ mkdir application-server
$ cd application-server
$ npm init
$ npm install @userappstore/app-store-application-server
$ APPLICATION_SERVER=http://localhost:3000 \
  APPLICATION_SERVER_TOKEN="a shared secret" \
  DASHBOARD_SERVER=http://localhost:8000 \
  node main.js

# additional parameters using Redis
# STORAGE_ENGINE="@userdashboard/storage-redis"
# REDIS_URL="..."
$ npm install @userdashboard/storage-redis

# additional parameters using Amazon S3 or compatible
# STORAGE_ENGINE="@userdashboard/storage-s3"
# S3_BUCKET_NAME=the_name
# ACCESS_KEY_ID=secret from amazon
# SECRET_ACCESS_KEY=secret from amazon
$ npm install @userdashboard/storage-s3

# additional parameters using PostgreSQL
# STORAGE_ENGINE="@userdashboard/storage-postgresql"
# DATABASE_URL="..."
$ npm install @userdashboard/storage-postgresql

Development

Development takes place on Github with releases on NPM.

License

This is free and unencumbered software released into the public domain. The MIT License is provided for countries that have not established a public domain.

About

App store for web apps, application server

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages