Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hunteroi/animeslist
My own list of animes
https://github.com/hunteroi/animeslist
Last synced: about 1 month ago
JSON representation
My own list of animes
- Host: GitHub
- URL: https://github.com/hunteroi/animeslist
- Owner: HunteRoi
- Created: 2020-09-06T23:29:51.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-02-01T21:18:40.000Z (12 months ago)
- Last Synced: 2024-05-02T02:54:25.005Z (9 months ago)
- Language: TypeScript
- Homepage:
- Size: 782 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
## Make it work
In order to be able to use this project, you have to follow these steps:1) Don't forget to install all dependencies with `npm i`
2) Install the necessary tools with `npm i -g firebase-tools`
3) Login to firebase with `firebase login`
4) Initialize your firestore database with `firebase init firestore`
5) Edit your `firetore.rules` file with your restrictions rules
6) Create a file named `firebase.ts` in the `./src` folder with the following content:
```typescript
import * as firebase from 'firebase/app';
import 'firebase/firestore';const firebaseConfig = { projectId: 'YOUR_FIREBASE_PROJECT_ID_HERE' };
firebase.initializeApp(firebaseConfig);export default firebase;
```
6) Run with `npm start` and enjoy!