Skip to content

Marauders-9998/Marauders-Website

Repository files navigation

Marauders-Website

Open Issues Forks Stars Made with Flask Slack

Official website of Marauders. Visit

Running the Website locally

Fork and Clone

Fork this repository.
Clone your forked repository.

git clone https://github.com/<user_name>/Marauders-Website.git

Make a Github OAuth App

Register you new Github OAuth App

Add names for localhost

cd /etc
nano hosts

Now add these names to 127.0.0.1 IP address:

marauders.com
api.marauders.com

Add some Environment Variables

Add the environment variables and their corresponding values as specified in Config_Variables file.

Running the app locally

Include the --setup arg when running only for the first time.

cd Marauders-Website
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
pip3 uninstall pkg-resources==0.0.0
python3 main_app.py [--setup]

To Terminate the server

Press Ctrl+C

Contribution

Your contributions are always welcome and appreciated. Following are the things you can do to contribute to this project.

  1. Report a bug
    If you think you have encountered an issue, and we should know about it, feel free to report it here and we will take care of it.

  2. Create a pull request
    It can't get better then this, your pull request will be appreciated by the community. You can get started by picking up any open issues from here and make a pull request.

Label Description
good first issue Issues, good for newcomers
easy Issues with relatively easy difficulty
medium Issues with relatively medium difficulty
hard Issues with relatively hard difficulty

If you are new to open-source, make sure to check read more about it here and learn more about creating a pull request here.