Vaibhav-22-dm / vmb

Vaishnava Marriage Bureau

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vmb

Vaishnava Marriage Bureau

Built with Cookiecutter Django Black code style
License:GPLv3

Local development

Name                   Command               State                    Ports
--------------------------------------------------------------------------------------------------
celerybeat       /entrypoint /start-celerybeat    Up
celeryworker     /entrypoint /start-celeryw ...   Up
flower           /entrypoint /start-flower        Up      0.0.0.0:5555->5555/tcp,:::5555->5555/tcp
redis            docker-entrypoint.sh redis ...   Up      6379/tcp
vmb_django_1     /entrypoint /start               Up      0.0.0.0:8000->8000/tcp,:::8000->8000/tcp
vmb_postgres_1   docker-entrypoint.sh postgres    Up      5432/tcp
  • You can now access the service by opening http://127.0.0.1:8000 on your browser
  • Create a superuser for the application using docker-compose exec django /entrypoint /app/manage.py createsuperuser
  • You can now login to the admin interface of the app using the superuser credentials from http://127.0.0.1:8000/admin
  • Load fixtures to get the app funcional docker-compose exec django /entrypoint /app/manage.py loaddata vmb/matrimony/fixtures/*.json
  • Load currency data: docker-compose exec django /entrypoint /app/manage.py update_rates

Adding new dependency

By default, if you have to add a dependency, add it in requirements/base.txt. If the dependency is specific to local or production environment, add it in requirements/local.txt or requirements/production.txt accordingly. If a Python dependency needs some system level packages to be installed as a prerequisite, add it in compose/local/django/Dockerfile and compose/production/django/Dockerfile.

Once done, you can rebuild the Docker images using docker-compose build.

Generate sample data

In Django shell: docker-compose exec django /entrypoint /app/manage.py shell, enter the following

from vmb.matrimony.factories import MatrimonyProfileFactory

MatrimonyProfileFactory.create_batch(1000)

Update sequence_id for matrimony_profiles table in PostgreSQL from Django dbshell docker-compose exec django /entrypoint /app/manage.py dbsell

SELECT setval('matrimony_profiles_id_seq', 1001, true);

Settings

Moved to settings.

Basic Commands


Setting Up Your Users

  • To create a normal user account, just go to Sign Up and fill out the form. Once you submit it, you'll see a "Verify Your E-mail Address" page. Go to your console to see a simulated email verification message. Copy the link into your browser. Now the user's email should be verified and ready to go.

  • To create an superuser account, use this command:

    $ python manage.py createsuperuser
    

For convenience, you can keep your normal user logged in on Chrome and your superuser logged in on Firefox (or similar), so that you can see how the site behaves for both kinds of users.

Type checks

Running type checks with mypy:

$ mypy vmb

Test coverage

To run the tests, check your test coverage, and generate an HTML coverage report:

$ coverage run -m pytest
$ coverage html
$ open htmlcov/index.html
Running tests with py.test
$ pytest

Live reloading and Sass CSS compilation

Moved to Live reloading and SASS compilation.

Deployment

The following details how to deploy this application.

Docker

See detailed cookiecutter-django Docker documentation.

About

Vaishnava Marriage Bureau

License:GNU Affero General Public License v3.0


Languages

Language:CSS 56.7%Language:JavaScript 30.3%Language:Python 9.8%Language:HTML 3.0%Language:Shell 0.2%Language:Dockerfile 0.1%Language:SCSS 0.0%