Skip to content

Commit

Permalink
Merge pull request #3 from gastongaiduk/custom-domain
Browse files Browse the repository at this point in the history
Update README.md and prepare for using custom domain
  • Loading branch information
gastongaiduk authored Dec 19, 2024
2 parents 6f7f2bf + eddfd17 commit 53ce2d0
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 7 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,5 @@ VITE_ENCRYPTION_KEY=example
Install node, at least version 18. First run `npm install` and then `npm run dev`.
The project should be accessible via http://localhost:5173/retroleaderboards/.

## Running screens
<img src="public/login.png" width="450" alt="Login"/>
<img src="public/recently_played_games_list.png" width="250" alt="Recently played games list"/> <img src="public/logout.png" width="250" alt="Logout"/>
<img src="public/game_leaderboards.png" width="250" alt="Game leaderboards"/> <img src="public/leaderboard_entries.png" width="250" alt="Leaderboard entries"/>
## Screens
![Screenshots](public/v0.0.4.gif)
2 changes: 1 addition & 1 deletion cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { defineConfig } from "cypress";

export default defineConfig({
e2e: {
baseUrl: 'http://localhost:5173/retroleaderboards',
baseUrl: 'http://localhost:5173',
defaultCommandTimeout: 10000,
},
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "retroleaderboards",
"private": true,
"version": "0.0.2",
"version": "0.0.3",
"scripts": {
"dev": "vite",
"dev:cypress": "VITE_ENCRYPTION_KEY=1234567890_KEY vite --host",
Expand Down
Binary file removed public/game_leaderboards.png
Binary file not shown.
Binary file removed public/leaderboard_entries.png
Binary file not shown.
Binary file removed public/login.png
Binary file not shown.
Binary file removed public/logout.png
Binary file not shown.
Binary file removed public/recently_played_games_list.png
Binary file not shown.
Binary file added public/v0.0.4.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion vite.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'

export default defineConfig({
base: '/retroleaderboards/',
base: '/',
plugins: [vue()],
})

0 comments on commit 53ce2d0

Please sign in to comment.