Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev Server #1674

Merged
merged 2 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .env.sample
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VITE_BACKEND_URL=
VITE_FRONTEND_URL=
VITE_DISCORD_INVITE_URL=
VITE_RAZORPAY_KEY_ID=
VITE_DISCORD_AUTH_URL=
VITE_RAZORPAY_KEY_ID=
VITE_DISCORD_AUTH_URL=
34 changes: 17 additions & 17 deletions .github/workflows/vercel.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
name: Deploy to Vercel
# name: Deploy to Vercel

on:
push:
branches:
- dev-server
# on:
# push:
# branches:
# - dev-server

jobs:
build:
runs-on: ubuntu-latest
# jobs:
# build:
# runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2
# steps:
# - name: Checkout code
# uses: actions/checkout@v2

- name: Install dependencies
run: npm install
# - name: Install dependencies
# run: npm install

- name: Build
run: npm run build
# - name: Build
# run: npm run build

- name: Deploy to Vercel
run: vercel --token ${{ secrets.VERCEL_TOKEN }} --prod
# - name: Deploy to Vercel
# run: vercel --token ${{ secrets.VERCEL_TOKEN }} --prod
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mulearnfrontend",
"private": true,
"version": "0.0.5",
"version": "0.0.6",
"type": "module",
"scripts": {
"dev": "vite --host",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
.InputSchedule {
width: 100%;
.weeks {
grid-template-columns: auto auto auto auto auto;
grid-template-columns: auto auto auto auto;
.box {
width: 40px;
height: 40px;
Expand Down