Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bajajcodes/collegedunia
This website will be lesser similar to collegedunia website.
https://github.com/bajajcodes/collegedunia
Last synced: 13 days ago
JSON representation
This website will be lesser similar to collegedunia website.
- Host: GitHub
- URL: https://github.com/bajajcodes/collegedunia
- Owner: bajajcodes
- Created: 2023-11-11T09:33:35.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-06T19:39:32.000Z (9 months ago)
- Last Synced: 2024-10-11T12:10:19.019Z (about 1 month ago)
- Language: TypeScript
- Homepage: https://educomguidance.vercel.app
- Size: 2.74 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to Remix
- [Remix Docs](https://remix.run/docs)
## Development
From your terminal:
```sh
npm run dev
```This starts your app in development mode, rebuilding assets on file changes.
## Deployment
First, build your app for production:
```sh
npm run build
```Then run the app in production mode:
```sh
npm start
```Now you'll need to pick a host to deploy it to.
### DIY
If you're familiar with deploying node applications, the built-in Remix app server is production-ready.
Make sure to deploy the output of `remix build`
- `build/`
- `public/build/`### Important Issues Which Helped Me
- [Bug:"Warning: Did not expect server HTML to contain a"](https://github.com/remix-run/remix/issues/1463)