SaaS App for my PyConNG Talk
/
-> Admin panel for Employee Management/jobs
-> List of jobs (WIP)/docs
-> List of available API (/api
) Endpoints & documentation
A Django2.X/Vuejs2.X SASS App
# install dependencies, builds frontend, runs backend server
deploy.sh
# To setup a tenants (Public tenant and Others...)
python manage.py shell
> from customers.models import Client
> tenant1 = Client(domain_url='127.0.0.1',
schema_name='public',
name='Default',
paid_until='2099-12-31',
on_trial=False)
> tenant1.save()
> tenant2 = Client(domain_url='localhost',
schema_name='client',
name='Default',
paid_until='2099-12-31',
on_trial=False)
> tenant2.save()
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
- Clone this Repo & Create a branch
- Punch in come codes
- Open a PR
- Send a mail to hello@myemp.site
- Indicate your desired subd-domain
- If you have a custom domain, that's fine, Create a CNAME record that points to wildcard.myemp.site.herokudns.com.