The new website of GeniALE. 🍻 This repository contains the CMS and the additional modules.
- SiteWebGeniALE
- Table of content
- Getting Started
- Deployment
- Plugins
- Documentation
- Authors
- Acknowledgments
- Licenses
Clone this repository
git clone git@github.com:GeniALE/SiteWebGeniALE.git
A Slack account to join our chat platform. Be in the Trello Website Board, where we have all the tasks there.
Otherwise, here are the prerequisites:
If you wish to use docker, see the Docker documentation.
If you wish to use Pycharm, see the Pycharm documentation.
Basic installation
Before starting, you need to create a database for the website. You can either use the create a database from the terminal or with a GUI such as PGAdmin
Clone the Github repository
git clone https://github.com/GeniALE/SiteWebGeniALE.git
Create an .env
file with your configurations
cd SiteWebGeniALE
cp .env.example .env
Note: You might want to change the values according to your environment configurations.
Create your virtualenv
virtualenv -p python3 venv
Each time you want to work on your project, you need to activate your environment:
On Unix like OS:
source env/bin/activate
On Windows:
env\Scripts\activate
Install dependencies, migrations and create super user
pip3 install -r requirements.txt
python3 manage.py migrate
python3 manage.py createsuperuser
You can finally start the server with:
python3 manage.py runserver 0.0.0.0
The website should be running at http://localhost:8080
For this project, we are using a branching model that focus on continuous delivery.
Basically, you have those type of branches :
- master : Trunk or latest branch
- feature : New feature development based on master
- fix : A fix for something in master.
Feature workflow
- Create your feature branch from the master with a
feature/
prefix. - Do your work
- Rebase master into your branch
- Review and test
- Create pull request
- Set the reviewers for your pull request (you must have at least ONE approval to merge)
- Assign the pull request to the person in charge of merging (it can be yourself)
- Assign your Trello card to the same person you assigned the PR
- Merge the branch when you have your approvals
Fix workflow
When we find a flaw, we have to respond quickly to fix that bug.
The workflow is pretty much the same.
The only difference is the branch prefix: fix/
.
At the moment, the website is deployed at: http://geniale-cms.herokuapp.com/
-
Pull the repository
-
Install the dependencies:
pip install -r requirements.txt
-
Create the environment configuration:
cp .env.example .env
-
Modify the environment configuration and set the database credentials.
-
To use Orchester, you need to create a
.orchester.json
configuration file with the proper credentials. For more details, refers to that documentation: https://github.com/popojargo/orchester -
Start the server
python manage.py migrate && python manage.py runserver 0.0.0.0:80
See also the list of contributors who participated in this project.
- Club Cedille 🌐
The code and the documentation are released under the MIT License.