Skip to content

thefrostedfrakes/TopTier-Games

 
 

Repository files navigation

COP4331 POOSD Large Project - Group 8

Check the projects tab for a roadmap of tasks

Steps for Heroku Deployment

  1. Start by pulling from the main branch of the GitHub repo and unit testing your code locally.

    git checkout main

    git pull

  2. Push your branch up to GitHub and make a pull request.

    There should be a button to the right of your branch on GitHub that allows you to "Comapre and Pull Request" _

    git add .

    git commit -m "some meaningful message"

    git push

  3. Create a remote connection to Heroku

    Only necessary for innitial push

    heroku git:remote -a poosd-large-project-group-8

  4. Push to main on Heroku

    git push heroku main

  5. Go to https://www.toptier.games/ to see your changes reflected on the server

Steps for tailwind installment

  1. start by installing tailwind css

    npm install tailwindcss postcss autoprefixer

  2. Generate Tailwind Configuration File

npx tailwindcss init

  1. Configure for tailwind in the tailwind.config.json. It should look like this:

  2. Configure the app.css file to look like this:

  3. Include Your Tailwind CSS File in the Project. In your React project, you should have an entry file like index.js or App.js. Import the Tailwind CSS file there:

    import './tailwind.css';

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 63.6%
  • Dart 35.6%
  • Other 0.8%