-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update to composer 2 and use mysql instead of mariadb
- Loading branch information
Showing
9 changed files
with
3,889 additions
and
2,956 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ That's it, you are ready | |
|
||
### Develop | ||
|
||
If you use the [Symfony CLI](https://symfony.com/download) 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. | ||
If you use the [Symfony CLI](https://symfony.com/download) 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 | ||
|
@@ -46,7 +46,7 @@ You can then run `npm install` and `npm run dev` at the root of the repository i | |
You might need to setup your hosts to redirect `gameher.dev` to localhost | ||
|
||
After this first installation, you can boot up the docker containers by simply running `make up` | ||
Log into the different containers by running `make tty` for the symfony container and `make db` for the mariadb container | ||
Log into the different containers by running `make tty` for the symfony container and `make db` for the mysql container | ||
Recompile the front assets with `make assets` | ||
Stop the containers with `make stop` | ||
|
||
|
@@ -57,9 +57,9 @@ The app uses Discord's OAuth server to handle user. In order to login and access | |
|
||
Head over to [Discord's Developer Portal](https://discordapp.com/developers/applications) 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 | ||
` | ||
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 | ||
|
@@ -76,7 +76,7 @@ Then you need to go in your repository `$ cd GameHer` you will also need to set | |
`$ git remote add upstream [email protected]:Noelierx/GameHer.git` | ||
|
||
|
||
And you good to work ! Now you just have to create new branches like that : | ||
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"` | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.