Gameher.fr is a french association aspiring to develop gender diversity in the fields of video games, esport and streaming. It is run by a great team of volunteers with the goal of developing a healthy environment for all players. We want to give them the tools they need to flourish and evolve in the fields of video games, esport and streaming.
If you want to support us, you can make donations.
Clone the project and install its dependencies:
composer install
npm install
Copy the .env.dist
file in a new .env
file, and configure it according to your environment:
- APP_ENV: Symfony env, usually
dev
orprod
- APP_SECRET: Your secret
- DATABASE_URL: url to connect to your database
- OAUTH_DISCORD_ID: Required for OAuth, get it from Discord (see configuring Discord)
- OAUTH_DISCORD_SECRET: Required for OAuth, get it from Discord (see configuring Discord)
Create your database and run migrations
php bin/console doctrine:database:create
php bin/console doctrine:migrations:migrate
That's it, you are ready
If you use the Symfony CLI you can launch a development server with symfony server:start
, otherwise you need to configure your Apache installation to serve the files from the public
folder.
You can then launch the webpack server with a watcher by running npm run watch
Then head over to http://localhost:3000 (with Symfony CLI) or to your webserver to start working
The app uses Discord's OAuth server to handle user. In order to login and access the admin panel, you need to configure a Discord app.
Head over to Discord's Developer Portal and create a New Application and fill its name
On the General Information tab, you can retrieve the client ID and client Secret that you need to add to your .env
file
On the OAuth2 tab, click on Add Redirect and enter the app's redirect url. The format will be:
http://YOUR_APP_URL/connect/discord/check
In the scopes section, select identify
, email
and connections
Finally, Save Changes ! You can now log into the app
sudo apt-get install php7.3 php7.3-cli php7.3-common php7.3-fpm php7.3-mysql php7.3-intl php7.3-curl php7.3-zip php7.3-xml
Fork this repository by clicking on the fork button on the top of this page. This will create a copy of this repository in your account. Then you will need to clone the repository to work on it !
$ git clone git@github.com:USERNAME/GameHer.git
where USERNAME
is your GitHub username.
Then you need to go in your repository $ cd GameHer
you will also need to set up a new remote that points to the original project so that you can grab any changes and bring them into your local copy.
$ git remote add upstream git@github.com:Noelierx/GameHer.git
And you good to work ! Now you just have to create new branches like that :
$ git checkout -b <add-your-new-branch-name>
Do your stuff and then commit with this command line : git commit -m "Stuff you have done"
Then, you will have to do a pull request by typing $ git push origin <add-your-branch-name>
And go back to github to click on the button 'Compare and Pull Request'.