grupyrn / jararaca

GruPy-RN Event and Check-in System

Home Page:https://meetup.grupyrn.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Jararaca

GruPy-RN Event and Check-in System

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

What things you need to install the software and how to install them

  • Python 3.6+
  • Node/NPM/Yarn

Installing

A step by step series of examples that tell you how to get a development env running

First of all, make a copy of .env.sample to .env

cp .env.sample .env

Install the dependencies

pip install -r requirements.txt

Checkout Jararaquinha submodule

git submodule init
git submodule update

Then, refer to Jararaquinha's installation instructions.

Running

Enter in your virtual environment.

Apply the migrations

python manage.py migrate

Create admin user

python manage.py createsuperuser

Compile translations

python manage.py compilemessages -f

Run the project

python manage.py runserver

And also run Jararaquinha in another terminal

yarn start

Now you can open http://localhost:8000 in your browser

Built With

Contributing

Steps for Submitting Code

  1. Fork the repository on GitHub.
  2. Make your change.
  3. Send a GitHub Pull Request to the main repository’s master branch. GitHub Pull Requests are the expected method of code collaboration on this project.

Translate

  1. Prepare message files for the desired language.
python manage.py makemessages --locale <language_code>

Example:

python manage.py makemessages --locale pt_BR
  1. Translate the *.po files inside each project application <app_name>/locale/<language_code>/LC_MESSAGES/

  2. Compile messages

python manage.py compilemessages -f

About

GruPy-RN Event and Check-in System

https://meetup.grupyrn.org

License:GNU General Public License v3.0


Languages

Language:Python 81.7%Language:HTML 15.2%Language:CSS 2.3%Language:Shell 0.5%Language:JavaScript 0.3%Language:Procfile 0.1%